aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performancemark
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/performancemark
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/performancemark')
-rw-r--r--files/ja/web/api/performancemark/index.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/files/ja/web/api/performancemark/index.html b/files/ja/web/api/performancemark/index.html
new file mode 100644
index 0000000000..a152764459
--- /dev/null
+++ b/files/ja/web/api/performancemark/index.html
@@ -0,0 +1,75 @@
+---
+title: PerformanceMark
+slug: Web/API/PerformanceMark
+tags:
+ - API
+ - Web パフォーマンス
+ - インターフェイス
+ - パフォーマンスタイミング API
+ - リファレンス
+translation_of: Web/API/PerformanceMark
+---
+<div>{{APIRef("User Timing API")}}</div>
+
+<p><span class="seoSummary"><code><strong>PerformanceMark</strong></code> は {{domxref("PerformanceEntry.entryType","entryType")}} の "<code>mark</code>" を持つ{{domxref("PerformanceEntry")}} オブジェクトの抽象インターフェイスです。<br>
+ このタイプのエントリは、{{domxref("Performance.mark","performance.mark()")}} を呼び出して、ブラウザの<em>パフォーマンスタイムライン</em>に<em>名前付き</em> {{domxref("DOMHighResTimeStamp")}} (<em>mark</em>) を追加することによって作成されます。</span></p>
+
+<p>{{InheritanceDiagram}}</p>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<p>このインターフェイスはプロパティを持ちませんが、以下のようにプロパティを修飾/制約することで以下の {{domxref("PerformanceEntry")}} プロパティを拡張します。</p>
+
+<dl>
+ <dt>{{domxref("PerformanceEntry.entryType")}}</dt>
+ <dd>"<code>mark</code>" を返します。</dd>
+ <dt>{{domxref("PerformanceEntry.name")}}</dt>
+ <dd>マークが{{domxref("Performance.mark()","performance.mark()")}} を呼び出して作成されたときに付けられた名前を返します。</dd>
+ <dt>{{domxref("PerformanceEntry.startTime")}}</dt>
+ <dd>{{domxref("Performance.mark()","performance.mark()")}} が呼び出されたときに {{domxref("DOMHighResTimeStamp")}} を返します。</dd>
+ <dt>{{domxref("PerformanceEntry.duration")}}</dt>
+ <dd>"<code>0</code>" を返します (マークには<em>期間</em>がありません)</dd>
+</dl>
+
+<h2 id="メソッド">メソッド</h2>
+
+<p>このインターフェイスにはメソッドがありません。</p>
+
+<h2 id="例">例</h2>
+
+<p><a href="/Web/API/User_Timing_API/Using_the_User_Timing_API">ユーザータイミング API の使用</a>の例を参照してください。</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('User Timing Level 2', '#performancemark', 'PerformanceMark')}}</td>
+ <td>{{Spec2('User Timing Level 2')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('User Timing', '#performancemark', 'PerformanceMark')}}</td>
+ <td>{{Spec2('User Timing')}}</td>
+ <td>基本的な定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+
+
+<p>{{Compat("api.PerformanceMark")}}</p>
+
+<h2 id="あわせて参照">あわせて参照</h2>
+
+<ul>
+ <li><a href="/Web/API/User_Timing_API">User Timing (Overview)</a></li>
+ <li><a href="/Web/API/User_Timing_API/Using_the_User_Timing_API">Using the User Timing API</a></li>
+</ul>