blob: d23ab10aafa3235a3524de57ad732a34a194f6cd (
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
85
86
|
---
title: 'Performance : Événement resourcetimingbufferfull'
slug: Web/API/Performance/resourcetimingbufferfull_event
tags:
- API
- DOM
- Event
- Performance
- Reference
- Performance web
- onresourcetimingbufferfull
translation_of: Web/API/Performance/resourcetimingbufferfull_event
---
<div>{{APIRef}}</div>
<p>L'événement <code>resourcetimingbufferfull</code> se déclenche lorsque la mémoire <a href="/fr/docs/Web/API/Performance/setResourceTimingBufferSize">tampon de synchronisation des ressources</a> du navigateur est pleine.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Propagation</th>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Annulable</th>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Interface</th>
<td>{{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">Propriété pour le gestionnaire d'événements correspondant</th>
<td>{{domxref("Performance.onresourcetimingbufferfull", "onresourcetimingbufferfull")}}</td>
</tr>
</tbody>
</table>
<h2 id="Examples">Exemples</h2>
<p>L'exemple suivant définit une fonction de rappel sur la propriété <code>onresourcetimingbufferfull</code>.</p>
<pre class="brush: js">function buffer_full(event) {
console.log("AVERTISSEMENT : La mémoire tampon des ressources est COMPLÈTE !");
performance.setResourceTimingBufferSize(200);
}
function init() {
// Définit un rappel si le tampon de ressources est rempli.
performance.onresourcetimingbufferfull = buffer_full;
}
<body onload="init()"></pre>
<p>Notez que vous pouvez également configurer le gestionnaire à l'aide de la fonction addEventListener() :</p>
<pre class="brush: js">performance.addEventListener('resourcetimingbufferfull', buffer_full);
</pre>
<h2 id="Specifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Resource Timing', '#dom-performance-onresourcetimingbufferfull', 'onresourcetimingbufferfull')}}</td>
<td>{{Spec2('Resource Timing')}}</td>
<td>Définition initialen.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Performance.resourcetimingbufferfull_event")}}</p>
<h2 id="See_also">Voir aussi</h2>
<ul>
<li>{{domxref("Performance.clearResourceTimings","Performance.clearResourceTimings()")}}</li>
<li>{{domxref("Performance.setResourceTimingBufferSize","Performance.setResourceTimingBufferSize()")}}</li>
</ul>
|