From e624e64515dc49cfab3b6f144d782fb297efd90b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 22 Feb 2022 00:16:12 +0900 Subject: Performance インターフェイスのプロパティとイベントを移行 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/performance/navigation/index.html | 57 --------------- files/ja/web/api/performance/navigation/index.md | 57 +++++++++++++++ .../onresourcetimingbufferfull/index.html | 73 ------------------- .../onresourcetimingbufferfull/index.md | 73 +++++++++++++++++++ .../resourcetimingbufferfull_event/index.html | 84 ---------------------- .../resourcetimingbufferfull_event/index.md | 84 ++++++++++++++++++++++ files/ja/web/api/performance/timeorigin/index.html | 47 ------------ files/ja/web/api/performance/timeorigin/index.md | 47 ++++++++++++ files/ja/web/api/performance/timing/index.html | 56 --------------- files/ja/web/api/performance/timing/index.md | 56 +++++++++++++++ 10 files changed, 317 insertions(+), 317 deletions(-) delete mode 100644 files/ja/web/api/performance/navigation/index.html create mode 100644 files/ja/web/api/performance/navigation/index.md delete mode 100644 files/ja/web/api/performance/onresourcetimingbufferfull/index.html create mode 100644 files/ja/web/api/performance/onresourcetimingbufferfull/index.md delete mode 100644 files/ja/web/api/performance/resourcetimingbufferfull_event/index.html create mode 100644 files/ja/web/api/performance/resourcetimingbufferfull_event/index.md delete mode 100644 files/ja/web/api/performance/timeorigin/index.html create mode 100644 files/ja/web/api/performance/timeorigin/index.md delete mode 100644 files/ja/web/api/performance/timing/index.html create mode 100644 files/ja/web/api/performance/timing/index.md diff --git a/files/ja/web/api/performance/navigation/index.html b/files/ja/web/api/performance/navigation/index.html deleted file mode 100644 index c10ffa3203..0000000000 --- a/files/ja/web/api/performance/navigation/index.html +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Performance.navigation -slug: Web/API/Performance/navigation -tags: - - API - - Deprecated - - HTTP - - legacy - - ナビゲーションタイミング - - パフォーマンス - - プロパティ - - 後方互換性 - - 読み取り専用 -translation_of: Web/API/Performance/navigation ---- -

{{APIRef("Navigation Timing")}}

- -
-

このプロパティは Navigation Timing Level 2 仕様では非推奨です。

-
- -

従来の Performance.navigation 読み取り専用プロパティは、リソースの取得に必要なリダイレクト数など、特定のブラウジングコンテキストで発生したナビゲーションの種類を表す {{domxref("PerformanceNavigation")}} オブジェクトを返します。

- -

このプロパティは Worker では使用できません。

- -

構文

- -
navObject = performance.navigation;
- -

仕様

- - - - - - - - - - - - - - -
仕様書ステータスコメント
{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.navigation')}}{{Spec2('Navigation Timing')}}初期定義
- -

ブラウザの互換性

- -
-

{{Compat("api.Performance.navigation")}}

-
- -

あわせて参照

- - diff --git a/files/ja/web/api/performance/navigation/index.md b/files/ja/web/api/performance/navigation/index.md new file mode 100644 index 0000000000..c10ffa3203 --- /dev/null +++ b/files/ja/web/api/performance/navigation/index.md @@ -0,0 +1,57 @@ +--- +title: Performance.navigation +slug: Web/API/Performance/navigation +tags: + - API + - Deprecated + - HTTP + - legacy + - ナビゲーションタイミング + - パフォーマンス + - プロパティ + - 後方互換性 + - 読み取り専用 +translation_of: Web/API/Performance/navigation +--- +

{{APIRef("Navigation Timing")}}

+ +
+

このプロパティは Navigation Timing Level 2 仕様では非推奨です。

+
+ +

従来の Performance.navigation 読み取り専用プロパティは、リソースの取得に必要なリダイレクト数など、特定のブラウジングコンテキストで発生したナビゲーションの種類を表す {{domxref("PerformanceNavigation")}} オブジェクトを返します。

+ +

このプロパティは Worker では使用できません。

+ +

構文

+ +
navObject = performance.navigation;
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書ステータスコメント
{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.navigation')}}{{Spec2('Navigation Timing')}}初期定義
+ +

ブラウザの互換性

+ +
+

{{Compat("api.Performance.navigation")}}

+
+ +

あわせて参照

+ + diff --git a/files/ja/web/api/performance/onresourcetimingbufferfull/index.html b/files/ja/web/api/performance/onresourcetimingbufferfull/index.html deleted file mode 100644 index 4de2a67a78..0000000000 --- a/files/ja/web/api/performance/onresourcetimingbufferfull/index.html +++ /dev/null @@ -1,73 +0,0 @@ ---- -title: Performance.onresourcetimingbufferfull -slug: Web/API/Performance/onresourcetimingbufferfull -tags: - - API - - Web パフォーマンス - - プロパティ - - リファレンス -translation_of: Web/API/Performance/onresourcetimingbufferfull ---- -
{{APIRef("Resource Timing API")}}
- -

onresourcetimingbufferfull プロパティは、{{event("resourcetimingbufferfull")}} イベントが発生したときに呼び出されるイベントハンドラです。このイベントは、ブラウザのリソースタイミングパフォーマンスバッファがいっぱいになったときに発生します。

- -

{{AvailableInWorkers}}

- -

構文

- -
callback = performance.onresourcetimingbufferfull = buffer_full_cb;
-
- -

戻り値

- -
-
callback
-
{{event("resourcetimingbufferfull")}} イベントが発生したときに呼び出される {{event("Event_handlers", "event handler")}}。
-
- -

- -

次の例では、onresourcetimingbufferfull プロパティにコールバック関数を設定します。

- -
function buffer_full(event) {
-  console.log("WARNING: Resource Timing Buffer is FULL!");
-  performance.setResourceTimingBufferSize(200);
-}
-function init() {
-  // Set a callback if the resource buffer becomes filled
-  performance.onresourcetimingbufferfull = buffer_full;
-}
-<body onload="init()">
-
- -

仕様

- - - - - - - - - - - - - - -
仕様書ステータスコメント
{{SpecName('Resource Timing', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}{{Spec2('Resource Timing')}}初期定義
- -

ブラウザの互換性

- -
-

{{Compat("api.Performance.onresourcetimingbufferfull")}}

-
- -

あわせて参照

- - diff --git a/files/ja/web/api/performance/onresourcetimingbufferfull/index.md b/files/ja/web/api/performance/onresourcetimingbufferfull/index.md new file mode 100644 index 0000000000..4de2a67a78 --- /dev/null +++ b/files/ja/web/api/performance/onresourcetimingbufferfull/index.md @@ -0,0 +1,73 @@ +--- +title: Performance.onresourcetimingbufferfull +slug: Web/API/Performance/onresourcetimingbufferfull +tags: + - API + - Web パフォーマンス + - プロパティ + - リファレンス +translation_of: Web/API/Performance/onresourcetimingbufferfull +--- +
{{APIRef("Resource Timing API")}}
+ +

onresourcetimingbufferfull プロパティは、{{event("resourcetimingbufferfull")}} イベントが発生したときに呼び出されるイベントハンドラです。このイベントは、ブラウザのリソースタイミングパフォーマンスバッファがいっぱいになったときに発生します。

+ +

{{AvailableInWorkers}}

+ +

構文

+ +
callback = performance.onresourcetimingbufferfull = buffer_full_cb;
+
+ +

戻り値

+ +
+
callback
+
{{event("resourcetimingbufferfull")}} イベントが発生したときに呼び出される {{event("Event_handlers", "event handler")}}。
+
+ +

+ +

次の例では、onresourcetimingbufferfull プロパティにコールバック関数を設定します。

+ +
function buffer_full(event) {
+  console.log("WARNING: Resource Timing Buffer is FULL!");
+  performance.setResourceTimingBufferSize(200);
+}
+function init() {
+  // Set a callback if the resource buffer becomes filled
+  performance.onresourcetimingbufferfull = buffer_full;
+}
+<body onload="init()">
+
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書ステータスコメント
{{SpecName('Resource Timing', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}{{Spec2('Resource Timing')}}初期定義
+ +

ブラウザの互換性

+ +
+

{{Compat("api.Performance.onresourcetimingbufferfull")}}

+
+ +

あわせて参照

+ + diff --git a/files/ja/web/api/performance/resourcetimingbufferfull_event/index.html b/files/ja/web/api/performance/resourcetimingbufferfull_event/index.html deleted file mode 100644 index bfabd2adae..0000000000 --- a/files/ja/web/api/performance/resourcetimingbufferfull_event/index.html +++ /dev/null @@ -1,84 +0,0 @@ ---- -title: 'Performance: resourcetimingbufferfull event' -slug: Web/API/Performance/resourcetimingbufferfull_event -tags: - - API - - DOM - - Web 開発 - - onresourcetimingbufferfull - - イベント - - パフォーマンス - - リファレンス -translation_of: Web/API/Performance/resourcetimingbufferfull_event ---- -
{{APIRef}}
- -

resourcetimingbufferfull イベントは、ブラウザのリソースタイミングバッファがいっぱいになると発生します。

- - - - - - - - - - - - - - - - - - - - -
バブルはい
キャンセル可能はい
インターフェイス{{domxref("Event")}}
イベントハンドラプロパティ{{domxref("Performance.onresourcetimingbufferfull", "onresourcetimingbufferfull")}}
- -

- -

次の例では、onresourcetimingbufferfull プロパティにコールバック関数を設定します。

- -
function buffer_full(event) {
-  console.log("WARNING: Resource Timing Buffer is FULL!");
-  performance.setResourceTimingBufferSize(200);
-}
-function init() {
-  // Set a callback if the resource buffer becomes filled
-  performance.onresourcetimingbufferfull = buffer_full;
-}
-<body onload="init()">
- -

addEventListener() 関数を使用してハンドラを設定することもできます。

- -
performance.addEventListener('resourcetimingbufferfull', buffer_full);
-
- -

仕様

- - - - - - - - - - - - - - -
仕様書ステータスコメント
{{SpecName('Resource Timing', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}{{Spec2('Resource Timing')}}初期定義
- -

ブラウザの互換性

- -
{{Compat("api.Performance.resourcetimingbufferfull_event")}}
- -

あわせて参照

- - diff --git a/files/ja/web/api/performance/resourcetimingbufferfull_event/index.md b/files/ja/web/api/performance/resourcetimingbufferfull_event/index.md new file mode 100644 index 0000000000..bfabd2adae --- /dev/null +++ b/files/ja/web/api/performance/resourcetimingbufferfull_event/index.md @@ -0,0 +1,84 @@ +--- +title: 'Performance: resourcetimingbufferfull event' +slug: Web/API/Performance/resourcetimingbufferfull_event +tags: + - API + - DOM + - Web 開発 + - onresourcetimingbufferfull + - イベント + - パフォーマンス + - リファレンス +translation_of: Web/API/Performance/resourcetimingbufferfull_event +--- +
{{APIRef}}
+ +

resourcetimingbufferfull イベントは、ブラウザのリソースタイミングバッファがいっぱいになると発生します。

+ + + + + + + + + + + + + + + + + + + + +
バブルはい
キャンセル可能はい
インターフェイス{{domxref("Event")}}
イベントハンドラプロパティ{{domxref("Performance.onresourcetimingbufferfull", "onresourcetimingbufferfull")}}
+ +

+ +

次の例では、onresourcetimingbufferfull プロパティにコールバック関数を設定します。

+ +
function buffer_full(event) {
+  console.log("WARNING: Resource Timing Buffer is FULL!");
+  performance.setResourceTimingBufferSize(200);
+}
+function init() {
+  // Set a callback if the resource buffer becomes filled
+  performance.onresourcetimingbufferfull = buffer_full;
+}
+<body onload="init()">
+ +

addEventListener() 関数を使用してハンドラを設定することもできます。

+ +
performance.addEventListener('resourcetimingbufferfull', buffer_full);
+
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書ステータスコメント
{{SpecName('Resource Timing', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}{{Spec2('Resource Timing')}}初期定義
+ +

ブラウザの互換性

+ +
{{Compat("api.Performance.resourcetimingbufferfull_event")}}
+ +

あわせて参照

+ + diff --git a/files/ja/web/api/performance/timeorigin/index.html b/files/ja/web/api/performance/timeorigin/index.html deleted file mode 100644 index eabb9801d2..0000000000 --- a/files/ja/web/api/performance/timeorigin/index.html +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Performance.timeOrigin -slug: Web/API/Performance/timeOrigin -tags: - - API - - Experimental - - High Resolution Time API - - timeOrigin - - パフォーマンス - - プロパティ - - リファレンス -translation_of: Web/API/Performance/timeOrigin ---- -

{{SeeCompatTable}}{{APIRef("High Resolution Time")}}

- -

{{domxref("Performance")}} インターフェイスの timeOrigin 読み取り専用プロパティは、パフォーマンス測定の開始時刻のハイレゾリューションタイムスタンプを返します。

- -

{{AvailableInWorkers}}

- -

構文

- -
var timeOrigin = performance.timeOrigin
- -

- -

ハイレゾリューションのタイムスタンプ

- -

仕様

- - - - - - - - - - - - -
仕様書ステータス
{{SpecName('Highres Time Level 2','#dom-performance-timeorigin','timeOrigin')}}{{Spec2('Highres Time Level 2')}}
- -

ブラウザの互換性

- -
-

{{Compat("api.Performance.timeOrigin")}}

-
diff --git a/files/ja/web/api/performance/timeorigin/index.md b/files/ja/web/api/performance/timeorigin/index.md new file mode 100644 index 0000000000..eabb9801d2 --- /dev/null +++ b/files/ja/web/api/performance/timeorigin/index.md @@ -0,0 +1,47 @@ +--- +title: Performance.timeOrigin +slug: Web/API/Performance/timeOrigin +tags: + - API + - Experimental + - High Resolution Time API + - timeOrigin + - パフォーマンス + - プロパティ + - リファレンス +translation_of: Web/API/Performance/timeOrigin +--- +

{{SeeCompatTable}}{{APIRef("High Resolution Time")}}

+ +

{{domxref("Performance")}} インターフェイスの timeOrigin 読み取り専用プロパティは、パフォーマンス測定の開始時刻のハイレゾリューションタイムスタンプを返します。

+ +

{{AvailableInWorkers}}

+ +

構文

+ +
var timeOrigin = performance.timeOrigin
+ +

+ +

ハイレゾリューションのタイムスタンプ

+ +

仕様

+ + + + + + + + + + + + +
仕様書ステータス
{{SpecName('Highres Time Level 2','#dom-performance-timeorigin','timeOrigin')}}{{Spec2('Highres Time Level 2')}}
+ +

ブラウザの互換性

+ +
+

{{Compat("api.Performance.timeOrigin")}}

+
diff --git a/files/ja/web/api/performance/timing/index.html b/files/ja/web/api/performance/timing/index.html deleted file mode 100644 index 4253259edd..0000000000 --- a/files/ja/web/api/performance/timing/index.html +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Performance.timing -slug: Web/API/Performance/timing -tags: - - API - - legacy - - ナビゲーションタイミング - - パフォーマンス - - プロパティ - - 後方互換性 - - 読み取り専用 - - 非推奨 -translation_of: Web/API/Performance/timing ---- -

{{APIRef("Navigation Timing")}}

- -
-

このプロパティは Navigation Timing Level 2 仕様では非推奨です。代わりに {{domxref("Performance.timeOrigin")}} プロパティを使用してください。

-
- -

従来の Performance.timing 読み取り専用プロパティは、待ち時間に関連するパフォーマンス情報を含む {{domxref("PerformanceTiming")}} オブジェクトを返します。

- -

このプロパティは Worker には使用できません。

- -

構文

- -
timingInfo = performance.timing;
- -

仕様

- - - - - - - - - - - - - - -
仕様書ステータスコメント
{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.timing')}}{{Spec2('Navigation Timing')}}初期定義
- -

ブラウザの互換性

- -
-

{{Compat("api.Performance.timing")}}

-
- -

あわせて参照

- - diff --git a/files/ja/web/api/performance/timing/index.md b/files/ja/web/api/performance/timing/index.md new file mode 100644 index 0000000000..4253259edd --- /dev/null +++ b/files/ja/web/api/performance/timing/index.md @@ -0,0 +1,56 @@ +--- +title: Performance.timing +slug: Web/API/Performance/timing +tags: + - API + - legacy + - ナビゲーションタイミング + - パフォーマンス + - プロパティ + - 後方互換性 + - 読み取り専用 + - 非推奨 +translation_of: Web/API/Performance/timing +--- +

{{APIRef("Navigation Timing")}}

+ +
+

このプロパティは Navigation Timing Level 2 仕様では非推奨です。代わりに {{domxref("Performance.timeOrigin")}} プロパティを使用してください。

+
+ +

従来の Performance.timing 読み取り専用プロパティは、待ち時間に関連するパフォーマンス情報を含む {{domxref("PerformanceTiming")}} オブジェクトを返します。

+ +

このプロパティは Worker には使用できません。

+ +

構文

+ +
timingInfo = performance.timing;
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書ステータスコメント
{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.timing')}}{{Spec2('Navigation Timing')}}初期定義
+ +

ブラウザの互換性

+ +
+

{{Compat("api.Performance.timing")}}

+
+ +

あわせて参照

+ + -- cgit v1.2.3-54-g00ecf