aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performance/timing/index.html
blob: 4253259edd80d5cb7d51d5a76d908142693456b6 (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
---
title: Performance.timing
slug: Web/API/Performance/timing
tags:
  - API
  - legacy
  - ナビゲーションタイミング
  - パフォーマンス
  - プロパティ
  - 後方互換性
  - 読み取り専用
  - 非推奨
translation_of: Web/API/Performance/timing
---
<p>{{APIRef("Navigation Timing")}}</p>

<div class="warning">
<p>このプロパティは <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2 仕様</a>では非推奨です。代わりに {{domxref("Performance.timeOrigin")}} プロパティを使用してください。</p>
</div>

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

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

<h2 id="構文">構文</h2>

<pre class="syntaxbox"><em>timingInfo</em> = <em>performance</em>.timing;</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.timing')}}</td>
   <td>{{Spec2('Navigation Timing')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<div>
<p>{{Compat("api.Performance.timing")}}</p>
</div>

<h2 id="あわせて参照">あわせて参照</h2>

<ul>
 <li>属している {{domxref("Performance")}} インターフェイス</li>
</ul>