blob: c10ffa3203fc98e966a27ad3cb7de6b4a17eb061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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>
|