aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performance/tojson/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/performance/tojson/index.md')
-rw-r--r--files/ja/web/api/performance/tojson/index.md62
1 files changed, 23 insertions, 39 deletions
diff --git a/files/ja/web/api/performance/tojson/index.md b/files/ja/web/api/performance/tojson/index.md
index 16ed75efdc..e45210fcf3 100644
--- a/files/ja/web/api/performance/tojson/index.md
+++ b/files/ja/web/api/performance/tojson/index.md
@@ -3,62 +3,46 @@ title: performance.toJSON()
slug: Web/API/Performance/toJSON
tags:
- API
- - パフォーマンス
- メソッド
+ - パフォーマンス
- リファレンス
+browser-compat: api.Performance.toJSON
translation_of: Web/API/Performance/toJSON
---
-<div>{{APIRef("High Resolution Timing")}}</div>
+{{APIRef("High Resolution Timing")}}
-<p>{{domxref("Performance")}} インターフェイスの <strong><code>toJSON()</code></strong> メソッドは標準のシリアライザです。パフォーマンスオブジェクトのプロパティの JSON 表現を返します。</p>
+**`toJSON()`** は {{domxref("Performance")}} インターフェイスのメソッドで、標準のシリアライザーです。パフォーマンスオブジェクトのプロパティの JSON 表現を返します。
-<p>{{availableinworkers}}</p>
+{{availableinworkers}}
-<h2 id="構文">構文</h2>
+## 構文
-<pre class="syntaxbox">myPerf = performance.toJSON()
-</pre>
+```js
+myPerf = performance.toJSON()
+```
-<h3 id="引数">引数</h3>
+### 引数
-<dl>
- <dt>なし</dt>
- <dd> </dd>
-</dl>
+- なし
+ - :
-<h3 id="戻り値">戻り値</h3>
+### 返値
-<dl>
- <dt>myPerf</dt>
- <dd>{{domxref("Performance")}} オブジェクトのシリアル化である JSON オブジェクト</dd>
-</dl>
+- myPerf
+ - : {{domxref("Performance")}} オブジェクトをシリアライズした JSON オブジェクト。
-<h2 id="例">例</h2>
+## 例
-<pre class="brush: js">var js;
+```js
+var js;
js = window.performance.toJSON();
console.log("json = " + JSON.stringify(js));
-</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('Highres Time Level 2', '#dom-performance-tojson', 'toJSON() serializer')}}</td>
- <td>{{Spec2('Highres Time Level 2')}}</td>
- <td><code>toJson()</code>を定義します。</td>
- </tr>
- </tbody>
-</table>
+{{Specifications}}
-<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+## ブラウザーの互換性
-<div>
-<p>{{Compat("api.Performance.toJSON")}}</p>
-</div>
+{{Compat}}