blob: b0e3ece5c2943905b745b152087cc3049e7c2f28 (
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
|
---
title: Window.performance
slug: Web/API/performance_property
translation_of: Web/API/Window/performance
original_slug: Web/API/Window/performance
---
<p>{{APIRef("High Resolution Time")}}</p>
<p>{{domxref("Window")}} インタフェースのパフォーマンスプロパティは、現在のドキュメントに関するパフォーマンス情報を収集するために使用できる {{domxref("Performance")}} オブジェクトを返します。これはパフォーマンスタイムライン API、高解像度時間 API、<a href="/ja/docs/Web/API/Navigation_timing_API">ナビゲーションタイミング API</a>、<a href="/ja/docs/Web/API/User_Timing_API">ユーザータイミング API</a> および<a href="/ja/docs/Web/API/Resource_Timing_API">リソースタイミング API</a> の公開ポイントとして機能します。</p>
<h2 id="構文">構文</h2>
<pre class="syntaxbox"><em>performanceData</em> = window.performance;</pre>
<h3 id="値">値</h3>
<p>それが公開する API によって提供されるパフォーマンスおよびタイミング関連情報へのアクセスを提供する {{domxref("Performance")}} オブジェクト。</p>
<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('Highres Time', '#the-performance-interface', 'window.performance')}}</td>
<td>{{Spec2('Highres Time')}}</td>
<td>Defines <code>now()</code> method.</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p>{{Compat("api.Window.performance")}}</p>
|