aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performanceentry
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/performanceentry
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/performanceentry')
-rw-r--r--files/ja/web/api/performanceentry/duration/index.html116
-rw-r--r--files/ja/web/api/performanceentry/entrytype/index.html125
-rw-r--r--files/ja/web/api/performanceentry/index.html149
-rw-r--r--files/ja/web/api/performanceentry/name/index.html146
-rw-r--r--files/ja/web/api/performanceentry/starttime/index.html116
-rw-r--r--files/ja/web/api/performanceentry/tojson/index.html108
6 files changed, 760 insertions, 0 deletions
diff --git a/files/ja/web/api/performanceentry/duration/index.html b/files/ja/web/api/performanceentry/duration/index.html
new file mode 100644
index 0000000000..48a956d855
--- /dev/null
+++ b/files/ja/web/api/performanceentry/duration/index.html
@@ -0,0 +1,116 @@
+---
+title: PerformanceEntry.duration
+slug: Web/API/PerformanceEntry/duration
+tags:
+ - API
+ - Web パフォーマンス
+ - プロパティ
+ - リファレンス
+translation_of: Web/API/PerformanceEntry/duration
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><strong><code>duration</code></strong> プロパティは、{{domxref("PerformanceEntry","パフォーマンスエントリ")}}の期間である{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します。</p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<p>このプロパティによって返される値は、パフォーマンスエントリの{{domxref("PerformanceEntry.entryType","タイプ")}}によって異なります。</p>
+
+<ul>
+ <li>"<code>frame</code>" - 連続する2つのフレームの <code>startTime</code> 間の差を示す{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>mark</code>" - "<code>0</code>" を返します (マークには長さがありません)</li>
+ <li>"<code>measure</code>" - メジャーの期間である{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>navigation</code>" - それぞれ {{domxref("PerformanceNavigationTiming.loadEventEnd")}} と {{domxref("PerformanceEntry.startTime")}} のプロパティの差である{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>resource</code>" - リソースの {{domxref("PerformanceEntry.responseEnd","responseEnd")}} {{domxref("DOMHighResTimeStamp","タイムスタンプ")}}とその {{domxref("PerformanceEntry.startTime","startTime")}} {{domxref("DOMHighResTimeStamp","タイムスタンプ")}}の差を返します</li>
+</ul>
+
+<p>このプロパティは {{readonlyInline}} です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>entry</em>.duration;</pre>
+
+<h3 id="Return_Value" name="Return_Value">戻り値</h3>
+
+<p>{{domxref("PerformanceEntry","パフォーマンスエントリ")}}の長さを表す {{domxref("DOMHighResTimeStamp")}}。期間の概念が特定のパフォーマンスメトリックに適用されない場合、ブラウザは期間 0 を返すように選択することがあります。</p>
+
+<p class="note">メモ: パフォーマンスエントリが "<code>resource</code>" の {{domxref("PerformanceEntry.entryType","entryType")}} を持つ場合 (つまり、エントリが {{domxref("PerformanceResourceTiming")}} オブジェクトである場合)、<span class="tlid-translation translation" lang="ja"><span title="">このプロパティは</span></span> {{domxref("PerformanceEntry.responseEnd")}} <span class="tlid-translation translation" lang="ja"><span title="">と</span></span> {{domxref("PerformanceEntry.startTime")}} <span class="tlid-translation translation" lang="ja"><span title="">の差</span></span>の{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}<span class="tlid-translation translation" lang="ja"><span title="">を返します。</span></span></p>
+
+<h2 id="例">例</h2>
+
+<p>次の例は、<code>duration</code> プロパティの使用方法を示しています。</p>
+
+<pre class="brush: js">function run_PerformanceEntry() {
+ log("PerformanceEntry support ...");
+
+ if (performance.mark === undefined) {
+ log("... performance.mark Not supported");
+ return;
+ }
+
+ // Create some performance entries via the mark() method
+ performance.mark("Begin");
+ do_work(50000);
+ performance.mark("End");
+
+ // Use getEntries() to iterate through the each entry
+ var p = performance.getEntries();
+ for (var i=0; i &lt; p.length; i++) {
+ log("Entry[" + i + "]");
+ check_PerformanceEntry(p[i]);
+ }
+}
+function check_PerformanceEntry(obj) {
+ var properties = ["name", "entryType", "startTime", "duration"];
+ var methods = ["toJSON"];
+
+ for (var i=0; i &lt; properties.length; i++) {
+ // check each property
+ var supported = properties[i] in obj;
+ if (supported)
+ log("..." + properties[i] + " = " + obj[properties[i]]);
+ else
+ log("..." + properties[i] + " = Not supported");
+ }
+ for (var i=0; i &lt; methods.length; i++) {
+ // check each method
+ var supported = typeof obj[methods[i]] == "function";
+ if (supported) {
+ var js = obj[methods[i]]();
+ log("..." + methods[i] + "() = " + JSON.stringify(js));
+ } else {
+ log("..." + methods[i] + " = Not supported");
+ }
+ }
+}
+</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('Performance Timeline Level 2', '#dom-performanceentry-duration', 'duration')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline', '#dom-performanceentry-duration', 'duration')}}</td>
+ <td>{{Spec2('Performance Timeline')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.PerformanceEntry.duration")}}</p>
+</div>
diff --git a/files/ja/web/api/performanceentry/entrytype/index.html b/files/ja/web/api/performanceentry/entrytype/index.html
new file mode 100644
index 0000000000..2a8e0a4cde
--- /dev/null
+++ b/files/ja/web/api/performanceentry/entrytype/index.html
@@ -0,0 +1,125 @@
+---
+title: PerformanceEntry.entryType
+slug: Web/API/PerformanceEntry/entryType
+tags:
+ - API
+ - PerformanceEntry
+ - Web パフォーマンス
+ - パフォーマンスタイムライン API
+ - プロパティ
+ - リファレンス
+translation_of: Web/API/PerformanceEntry/entryType
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><span class="seoSummary"><strong><code>entryType</code></strong> プロパティは、たとえば "<code>mark</code>" などのパフォーマンスメトリックの種類を表す {{domxref("DOMString")}} を返します。このプロパティは読み取り専用です。</span></p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <em>type</em> = <em>entry</em>.entryType;</pre>
+
+<h3 id="Return_Value" name="Return_Value">戻り値</h3>
+
+<p>戻り値は <code>PerformanceEntry</code> オブジェクトのサブタイプに依存し、次の表に示すように {{domxref('PerformanceEntry.name')}} プロパティの値に影響します。</p>
+
+<h3 id="パフォーマンスエントリタイプの名前">パフォーマンスエントリタイプの名前</h3>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">値</th>
+ <th scope="col">サブタイプ</th>
+ <th scope="col">name プロパティのタイプ</th>
+ <th scope="col">name プロパティの説明</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><code>frame</code>, <code>navigation</code></td>
+ <td>{{domxref('PerformanceFrameTiming')}}, {{domxref('PerformanceNavigationTiming')}}</td>
+ <td>{{domxref("URL")}}</td>
+ <td>ドキュメントのアドレス</td>
+ </tr>
+ <tr>
+ <td><code>resource</code></td>
+ <td>{{domxref('PerformanceResourceTiming')}}</td>
+ <td>{{domxref("URL")}}</td>
+ <td>リクエストされたリソースの解決された URL。リクエストがリダイレクトされても、この値は変わりません。</td>
+ </tr>
+ <tr>
+ <td><code>mark</code></td>
+ <td>{{domxref('PerformanceMark')}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>{{domxref("Performance.mark","performance.mark()")}} を呼び出してマークを作成したときに使用された名前</td>
+ </tr>
+ <tr>
+ <td><code>measure</code></td>
+ <td>{{domxref('PerformanceMeasure')}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>メジャーが {{domxref("Performance.measure","performance.measure()")}} を呼び出して作成されたときに使用された名前</td>
+ </tr>
+ <tr>
+ <td><code>paint</code></td>
+ <td>{{domxref('PerformancePaintTiming')}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td><code>'first-paint'</code> もしくは <code>'first-contentful-paint'</code> のいずれか</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="例">例</h2>
+
+<p>次の例は、<code>entryType</code> プロパティの使用方法を示しています。</p>
+
+<pre class="brush: js">function run_PerformanceEntry() {
+
+ // check for feature support before continuing
+ if (performance.mark === undefined) {
+ console.log("performance.mark not supported");
+ return;
+ }
+
+ // Create a performance entry named "begin" via the mark() method
+ performance.mark("begin");
+
+ // Check the entryType of all the "begin" entries
+ var entriesNamedBegin = performance.getEntriesByName("begin");
+ for (var i=0; i &lt; entriesNamedBegin.length; i++) {
+ var typeOfEntry = entriesNamedBegin[i].entryType;
+ console.log("Entry is type: " + typeOfEntry);
+ }
+
+}
+</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('Performance Timeline Level 2', '#dom-performanceentry-entrytype', 'entryType')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline', '#dom-performanceentry-entrytype', 'entryType')}}</td>
+ <td>{{Spec2('Performance Timeline')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.PerformanceEntry.entryType")}}</p>
+</div>
diff --git a/files/ja/web/api/performanceentry/index.html b/files/ja/web/api/performanceentry/index.html
new file mode 100644
index 0000000000..da7c5949a2
--- /dev/null
+++ b/files/ja/web/api/performanceentry/index.html
@@ -0,0 +1,149 @@
+---
+title: PerformanceEntry
+slug: Web/API/PerformanceEntry
+tags:
+ - API
+ - PerformanceEntry
+ - Web パフォーマンス
+ - インターフェイス
+ - パフォーマンスタイムライン API
+ - リファレンス
+translation_of: Web/API/PerformanceEntry
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><span class="seoSummary"><strong><code>PerformanceEntry</code></strong> オブジェクトは、<em>パフォーマンスタイムライン</em>の一部である単一のパフォーマンスメトリックをカプセル化します。パフォーマンスエントリは、アプリケーション内の明示的な時点でパフォーマンス <em>{{domxref("PerformanceMark","mark")}}</em> または <em>{{domxref("PerformanceMeasure","measure")}}</em> を作成する (たとえば、{{domxref("Performance.mark","mark()")}} メソッドを呼び出すことによって) ことで直接作成できます。パフォーマンスエントリは、(イメージなどの) リソースのロードなどの間接的な方法でも作成されます。</span></p>
+
+<p><code>PerformanceEntry</code> インスタンスは常に次のサブタイプのいずれかになります:</p>
+
+<ul>
+ <li>{{domxref("PerformanceMark")}}</li>
+ <li>{{domxref("PerformanceMeasure")}}</li>
+ <li>{{domxref("PerformanceFrameTiming")}}</li>
+ <li>{{domxref("PerformanceNavigationTiming")}}</li>
+ <li>{{domxref("PerformanceResourceTiming")}}</li>
+ <li>{{domxref("PerformancePaintTiming")}}</li>
+</ul>
+
+<p>{{AvailableInWorkers}}</p>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<dl>
+ <dt>{{domxref("PerformanceEntry.name")}} {{readonlyInline}}</dt>
+ <dd>{{domxref("PerformanceEntry.entryType")}} プロパティによって返される値をさらに指定する値。両方の値はサブタイプによって異なります。有効な値についてはプロパティページを参照してください。</dd>
+ <dt>{{domxref("PerformanceEntry.entryType")}} {{readonlyInline}}</dt>
+ <dd>たとえば、"<code>mark</code>" などのパフォーマンスメトリックの種類を表す {{domxref("DOMString")}}。有効な値についてはプロパティページを参照してください。</dd>
+ <dt>{{domxref("PerformanceEntry.startTime")}} {{readonlyInline}}</dt>
+ <dd>パフォーマンスメトリックの開始時間を表す {{domxref("DOMHighResTimeStamp")}}。</dd>
+ <dt>{{domxref("PerformanceEntry.duration")}} {{readonlyInline}}</dt>
+ <dd>パフォーマンスイベントの期間の時間値を表す {{domxref("DOMHighResTimeStamp")}}。</dd>
+</dl>
+
+<h2 id="メソッド">メソッド</h2>
+
+<dl>
+ <dt>{{domxref("PerformanceEntry.toJSON","PerformanceEntry.toJSON()")}}</dt>
+ <dd><code>PerformanceEntry</code> オブジェクトの JSON リプリゼンテーションを返します。</dd>
+</dl>
+
+<h2 id="例">例</h2>
+
+<p>次の例では、すべての <code>PerformanceEntry</code> プロパティを調べて、ブラウザがそれらをサポートしているかどうかを確認し、サポートしている場合はそれらの値をコンソールに書き込みます。</p>
+
+<pre class="brush: js">function print_PerformanceEntries() {
+ // getEntries() を使用してすべてのパフォーマンスエントリのリストを取得します。
+ var p = performance.getEntries();
+ for (var i=0; i &lt; p.length; i++) {
+ console.log("PerformanceEntry[" + i + "]");
+ print_PerformanceEntry(p[i]);
+ }
+}
+function print_PerformanceEntry(perfEntry) {
+ var properties = ["name",
+ "entryType",
+ "startTime",
+ "duration"];
+
+ for (var i=0; i &lt; properties.length; i++) {
+ // それぞれのプロパティをチェックします。
+ var supported = properties[i] in perfEntry;
+ if (supported) {
+ var value = perfEntry[properties[i]];
+ console.log("... " + properties[i] + " = " + value);
+ } else {
+ console.log("... " + properties[i] + " is NOT supported");
+ }
+ }
+}
+</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('Resource Timing 3')}}</td>
+ <td>{{Spec2('Resource Timing 3')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Resource Timing 2')}}</td>
+ <td>{{Spec2('Resource Timing 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Resource Timing')}}</td>
+ <td>{{Spec2('Resource Timing')}}</td>
+ <td>{{domxref("PerformanceResourceTiming")}} インターフェイスと <code>entryType</code> の <code>resource</code> 値を追加します。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Navigation Timing Level 2')}}</td>
+ <td>{{Spec2('Navigation Timing Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Navigation Timing')}}</td>
+ <td>{{Spec2('Navigation Timing')}}</td>
+ <td>{{domxref("PerformanceNavigationTiming")}} インターフェイスと <code>entryType</code> の <code>navigation</code> 値を追加します。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('User Timing Level 2')}}</td>
+ <td>{{Spec2('User Timing Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('User Timing')}}</td>
+ <td>{{Spec2('User Timing')}}</td>
+ <td><code>entryType</code> の <code>mark</code> および <code>measure</code> の値と同様に、{{domxref("PerformanceMark")}} および {{domxref("PerformanceMeasure")}} インターフェイスを追加します。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Frame Timing')}}</td>
+ <td>{{Spec2('Frame Timing')}}</td>
+ <td>{{domxref('PerformanceFrameTiming')}} インターフェイスと <code>entryType</code> の <code>frame</code> 値を追加します。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline Level 2', '#dom-performanceentry', 'PerformanceEntry')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td><code>toJSON()</code> シリアライザメソッドを追加しました。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline', '#dom-performanceentry', 'PerformanceEntry')}}</td>
+ <td>{{Spec2('Performance Timeline')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.PerformanceEntry")}}</p>
+</div>
diff --git a/files/ja/web/api/performanceentry/name/index.html b/files/ja/web/api/performanceentry/name/index.html
new file mode 100644
index 0000000000..8fd701cbe1
--- /dev/null
+++ b/files/ja/web/api/performanceentry/name/index.html
@@ -0,0 +1,146 @@
+---
+title: PerformanceEntry.name
+slug: Web/API/PerformanceEntry/name
+tags:
+ - API
+ - Web パフォーマンス
+ - プロパティ
+ - リファレンス
+translation_of: Web/API/PerformanceEntry/name
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><span class="seoSummary">{{domxref("PerformanceEntry")}} インターフェイスの <strong><code>name</code></strong> プロパティは、{{domxref("PerformanceEntry.entryType")}} プロパティによって返される値をさらに指定する値を返します。このプロパティは読み取り専用です。</span></p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var<em> name</em> = <em>entry</em>.name;
+</pre>
+
+<h3 id="Return_Value" name="Return_Value">戻り値</h3>
+
+<p>以下の表に示すように、戻り値は <code>PerformanceEntry</code> オブジェクトのサブタイプと {{domxref("PerformanceEntry.entryType")}} の値によって異なります。</p>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">値</th>
+ <th scope="col">サブタイプ</th>
+ <th scope="col">entryType の値</th>
+ <th scope="col">説明</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{domxref("URL")}}</td>
+ <td>{{domxref('PerformanceFrameTiming')}}, {{domxref('PerformanceNavigationTiming')}}</td>
+ <td><code>frame</code>, <code>navigation</code></td>
+ <td>ドキュメントのアドレス</td>
+ </tr>
+ <tr>
+ <td>{{domxref("URL")}}</td>
+ <td>{{domxref('PerformanceResourceTiming')}}</td>
+ <td><code>resource</code></td>
+ <td>リクエストされたリソースの解決されたURL。リクエストがリダイレクトされても、この値は変わりません。</td>
+ </tr>
+ <tr>
+ <td>{{domxref("DOMString")}}</td>
+ <td>{{domxref('PerformanceMark')}}</td>
+ <td><code>mark</code></td>
+ <td>{{domxref("Performance.mark","performance.mark()")}} を呼び出してマークを作成したときに使用された名前。</td>
+ </tr>
+ <tr>
+ <td>{{domxref("DOMString")}}</td>
+ <td>{{domxref('PerformanceMeasure')}}</td>
+ <td><code>measure</code></td>
+ <td>メジャーが {{domxref("Performance.measure","performance.measure()")}} を呼び出して作成されたときに使用された名前。</td>
+ </tr>
+ <tr>
+ <td>{{domxref("DOMString")}}</td>
+ <td>{{domxref('PerformancePaintTiming')}}</td>
+ <td><code>paint</code></td>
+ <td><code>'first-paint'</code> もしくは <code>'first-contentful-paint'</code> のいずれか</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="例">例</h2>
+
+<p>次の例は、<code>name</code> プロパティの使い方を示しています。</p>
+
+<pre class="brush: js">function run_PerformanceEntry() {
+ log("PerformanceEntry support ...");
+
+ if (performance.mark === undefined) {
+ log("... performance.mark Not supported");
+ return;
+ }
+
+ // Create some performance entries via the mark() method
+ performance.mark("Begin");
+ do_work(50000);
+ performance.mark("End");
+
+ // Use getEntries() to iterate through the each entry
+ var p = performance.getEntries();
+ for (var i=0; i &lt; p.length; i++) {
+ log("Entry[" + i + "]");
+ check_PerformanceEntry(p[i]);
+ }
+}
+function check_PerformanceEntry(obj) {
+ var properties = ["name", "entryType", "startTime", "duration"];
+ var methods = ["toJSON"];
+
+ for (var i=0; i &lt; properties.length; i++) {
+ // check each property
+ var supported = properties[i] in obj;
+ if (supported)
+ log("..." + properties[i] + " = " + obj[properties[i]]);
+ else
+ log("..." + properties[i] + " = Not supported");
+ }
+ for (var i=0; i &lt; methods.length; i++) {
+ // check each method
+ var supported = typeof obj[methods[i]] == "function";
+ if (supported) {
+ var js = obj[methods[i]]();
+ log("..." + methods[i] + "() = " + JSON.stringify(js));
+ } else {
+ log("..." + methods[i] + " = Not supported");
+ }
+ }
+}
+</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('Performance Timeline Level 2', '#dom-performanceentry-name', 'name')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline', '#dom-performanceentry-name', 'name')}}</td>
+ <td>{{Spec2('Performance Timeline')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+
+
+<p>{{Compat("api.PerformanceEntry.name")}}</p>
+</div>
diff --git a/files/ja/web/api/performanceentry/starttime/index.html b/files/ja/web/api/performanceentry/starttime/index.html
new file mode 100644
index 0000000000..37ada31f10
--- /dev/null
+++ b/files/ja/web/api/performanceentry/starttime/index.html
@@ -0,0 +1,116 @@
+---
+title: PerformanceEntry.startTime
+slug: Web/API/PerformanceEntry/startTime
+tags:
+ - API
+ - Web パフォーマンス
+ - プロパティ
+ - リファレンス
+translation_of: Web/API/PerformanceEntry/startTime
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><strong><code>startTime</code></strong> プロパティは、{{domxref("PerformanceEntry","performance entry")}} のうち最初に記録された {{domxref("DOMHighResTimeStamp","timestamp")}} を返します。</p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<p>このプロパティによって返される値は、パフォーマンスエントリの{{domxref("PerformanceEntry.entryType","タイプ")}}によって異なります。</p>
+
+<ul>
+ <li>"<code>frame</code>" - フレームが開始されたときに{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>mark</code>" - マークが{{domxref("Performance.mark","performance.mark()")}} の呼び出しによって作成された場合は、{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>measure</code>" - メジャーが {{domxref("Performance.measure","performance.measure()")}} の呼び出しによって作成された場合、{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>navigation</code>" - "<code>0</code>" の値を持つ{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+ <li>"<code>resource</code>" - ブラウザ{{domxref( "PerformanceEntry.fetchStart","リソースの取得")}}の直前に{{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します</li>
+</ul>
+
+<p>このプロパティは {{readonlyInline}} です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>entry</em>.startTime;</pre>
+
+<h3 id="Return_Value" name="Return_Value">戻り値</h3>
+
+<p>{{domxref("PerformanceEntry","パフォーマンスエントリ")}}が作成されたときの最初のタイムスタンプを表す {{domxref("DOMHighResTimeStamp")}}。</p>
+
+<p class="note">メモ: パフォーマンスエントリが "<code>resource</code>" の {{domxref("PerformanceEntry.entryType","entryType")}}  を持つ場合 (つまり、エントリが{{domxref("PerformanceResourceTiming")}} オブジェクトである場合)、このプロパティは{{domxref("PerformanceEntry.fetchStart")}} {{domxref("DOMHighResTimeStamp","タイムスタンプ")}}を返します。</p>
+
+<h2 id="例">例</h2>
+
+<p>次の例は、<code>startTime</code> プロパティの使用方法を示しています。</p>
+
+<pre class="brush: js">function run_PerformanceEntry() {
+ log("PerformanceEntry support ...");
+
+ if (performance.mark === undefined) {
+ log("... performance.mark Not supported");
+ return;
+ }
+
+ // Create some performance entries via the mark() method
+ performance.mark("Begin");
+ do_work(50000);
+ performance.mark("End");
+
+ // Use getEntries() to iterate through the each entry
+ var p = performance.getEntries();
+ for (var i=0; i &lt; p.length; i++) {
+ log("Entry[" + i + "]");
+ check_PerformanceEntry(p[i]);
+ }
+}
+function check_PerformanceEntry(obj) {
+ var properties = ["name", "entryType", "startTime", "duration"];
+ var methods = ["toJSON"];
+
+ for (var i=0; i &lt; properties.length; i++) {
+ // check each property
+ var supported = properties[i] in obj;
+ if (supported)
+ log("..." + properties[i] + " = " + obj[properties[i]]);
+ else
+ log("..." + properties[i] + " = Not supported");
+ }
+ for (var i=0; i &lt; methods.length; i++) {
+ // check each method
+ var supported = typeof obj[methods[i]] == "function";
+ if (supported) {
+ var js = obj[methods[i]]();
+ log("..." + methods[i] + "() = " + JSON.stringify(js));
+ } else {
+ log("..." + methods[i] + " = Not supported");
+ }
+ }
+}
+</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('Performance Timeline Level 2', '#dom-performanceentry-starttime', 'startTime')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('Performance Timeline', '#dom-performanceentry-starttime', 'startTime')}}</td>
+ <td>{{Spec2('Performance Timeline')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.PerformanceEntry.startTime")}}</p>
+</div>
diff --git a/files/ja/web/api/performanceentry/tojson/index.html b/files/ja/web/api/performanceentry/tojson/index.html
new file mode 100644
index 0000000000..adcf14851c
--- /dev/null
+++ b/files/ja/web/api/performanceentry/tojson/index.html
@@ -0,0 +1,108 @@
+---
+title: PerformanceEntry.toJSON()
+slug: Web/API/PerformanceEntry/toJSON
+tags:
+ - API
+ - Web パフォーマンス
+ - メソッド
+ - リファレンス
+translation_of: Web/API/PerformanceEntry/toJSON
+---
+<div>{{APIRef("Performance Timeline API")}}</div>
+
+<p><strong><code>toJSON()</code></strong> メソッドは<em>シリアライザ</em>で、{{domxref("PerformanceEntry","パフォーマンスエントリ")}}オブジェクトの JSON 表現を返します。</p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox">json = perfEntry.toJSON();
+</pre>
+
+<h3 id="引数">引数</h3>
+
+<dl>
+ <dt>なし</dt>
+ <dd> </dd>
+</dl>
+
+<h3 id="戻り値">戻り値</h3>
+
+<dl>
+ <dt>json</dt>
+ <dd>{{domxref("PerformanceEntry")}} オブジェクトのシリアル化である JSON オブジェクト</dd>
+</dl>
+
+<h2 id="例">例</h2>
+
+<p>次の例は、<code>toJSON()</code> メソッドの使用方法を示しています。</p>
+
+<pre class="brush: js">function run_PerformanceEntry() {
+ log("PerformanceEntry support ...");
+
+ if (performance.mark === undefined) {
+ log("... performance.mark Not supported");
+ return;
+ }
+
+ // Create some performance entries via the mark() method
+ performance.mark("Begin");
+ do_work(50000);
+ performance.mark("End");
+
+ // Use getEntries() to iterate through the each entry
+ var p = performance.getEntries();
+ for (var i=0; i &lt; p.length; i++) {
+ log("Entry[" + i + "]");
+ check_PerformanceEntry(p[i]);
+ }
+}
+function check_PerformanceEntry(obj) {
+ var properties = ["name", "entryType", "startTime", "duration"];
+ var methods = ["toJSON"];
+
+ for (var i=0; i &lt; properties.length; i++) {
+ // check each property
+ var supported = properties[i] in obj;
+ if (supported)
+ log("..." + properties[i] + " = " + obj[properties[i]]);
+ else
+ log("..." + properties[i] + " = Not supported");
+ }
+ for (var i=0; i &lt; methods.length; i++) {
+ // check each method
+ var supported = typeof obj[methods[i]] == "function";
+ if (supported) {
+ var js = obj[methods[i]]();
+ log("..." + methods[i] + "() = " + JSON.stringify(js));
+ } else {
+ log("..." + methods[i] + " = Not supported");
+ }
+ }
+}
+</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('Performance Timeline Level 2', '#dom-performanceentry-tojson', 'toJSON')}}</td>
+ <td>{{Spec2('Performance Timeline Level 2')}}</td>
+ <td><code>toJSON()</code> メソッドの初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.PerformanceEntry.toJSON")}}</p>
+</div>