aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performance/resourcetimingbufferfull_event/index.md
blob: bfabd2adae0da26fab45094af406d3117cb9b8be (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: 'Performance: resourcetimingbufferfull event'
slug: Web/API/Performance/resourcetimingbufferfull_event
tags:
  - API
  - DOM
  - Web 開発
  - onresourcetimingbufferfull
  - イベント
  - パフォーマンス
  - リファレンス
translation_of: Web/API/Performance/resourcetimingbufferfull_event
---
<div>{{APIRef}}</div>

<p><code>resourcetimingbufferfull</code> イベントは、ブラウザのリソースタイミングバッファがいっぱいになると発生します。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">バブル</th>
   <td>はい</td>
  </tr>
  <tr>
   <th scope="row">キャンセル可能</th>
   <td>はい</td>
  </tr>
  <tr>
   <th scope="row">インターフェイス</th>
   <td>{{domxref("Event")}}</td>
  </tr>
  <tr>
   <th scope="row">イベントハンドラプロパティ</th>
   <td>{{domxref("Performance.onresourcetimingbufferfull", "onresourcetimingbufferfull")}}</td>
  </tr>
 </tbody>
</table>

<h2 id="例">例</h2>

<p>次の例では、<code>onresourcetimingbufferfull</code> プロパティにコールバック関数を設定します。</p>

<pre class="brush: js">function buffer_full(event) {
  console.log("WARNING: Resource Timing Buffer is FULL!");
  performance.setResourceTimingBufferSize(200);
}
function init() {
  // Set a callback if the resource buffer becomes filled
  performance.onresourcetimingbufferfull = buffer_full;
}
&lt;body onload="init()"&gt;</pre>

<p>addEventListener() 関数を使用してハンドラを設定することもできます。</p>

<pre class="brush: js">performance.addEventListener('resourcetimingbufferfull', buffer_full);
</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', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}</td>
   <td>{{Spec2('Resource Timing')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

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

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

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

<ul>
 <li>{{domxref("Performance.clearResourceTimings","Performance.clearResourceTimings()")}}</li>
 <li>{{domxref("Performance.setResourceTimingBufferSize","Performance.setResourceTimingBufferSize()")}}</li>
</ul>