diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-22 00:16:12 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2022-02-26 18:11:51 +0900 |
commit | e624e64515dc49cfab3b6f144d782fb297efd90b (patch) | |
tree | eb3f420ff8d67ceb31dd63d67828458998731938 /files/ja/web/api/performance/navigation/index.md | |
parent | ddd7b6e74321361826704e0c315b16191d5dfe1c (diff) | |
download | translated-content-e624e64515dc49cfab3b6f144d782fb297efd90b.tar.gz translated-content-e624e64515dc49cfab3b6f144d782fb297efd90b.tar.bz2 translated-content-e624e64515dc49cfab3b6f144d782fb297efd90b.zip |
Performance インターフェイスのプロパティとイベントを移行
Diffstat (limited to 'files/ja/web/api/performance/navigation/index.md')
-rw-r--r-- | files/ja/web/api/performance/navigation/index.md | 57 |
1 files changed, 57 insertions, 0 deletions
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 +--- +<p>{{APIRef("Navigation Timing")}}</p> + +<div class="warning"> +<p>このプロパティは <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2 仕様</a>では非推奨です。</p> +</div> + +<p>従来の <code><strong>Performance</strong></code><strong><code>.navigation</code></strong> 読み取り専用プロパティは、リソースの取得に必要なリダイレクト数など、特定のブラウジングコンテキストで発生したナビゲーションの種類を表す {{domxref("PerformanceNavigation")}} オブジェクトを返します。</p> + +<p>このプロパティは Worker では使用できません。</p> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox"><em>navObject</em> = <em>performance</em>.navigation;</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様書</th> + <th scope="col">ステータス</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.navigation')}}</td> + <td>{{Spec2('Navigation Timing')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザの互換性">ブラウザの互換性</h2> + +<div> +<p>{{Compat("api.Performance.navigation")}}</p> +</div> + +<h2 id="あわせて参照">あわせて参照</h2> + +<ul> + <li>The {{domxref("Performance")}} interface it belongs to.</li> +</ul> |