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
87
88
89
90
91
92
93
|
---
title: performance.clearMarks()
slug: Web/API/Performance/clearMarks
tags:
- API
- Method
- Méthode
- Reference
- Performance web
translation_of: Web/API/Performance/clearMarks
---
<div>{{APIRef("User Timing API")}}</div>
<p>La méthode <strong><code>clearMarks()</code></strong> supprime les <em>marqueurs nommés</em> du tampon d'entrée des performances du navigateur. Si la méthode est appelée sans arguments, toutes les {{domxref("PerformanceEntry", "entrées de performance","",1)}} avec un {{domxref("PerformanceEntry.entryType", "entryType")}} de « <code>mark</code> » seront supprimées du tampon d'entrée de performance.</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush: js">
<em>performance</em>.clearMarks();
<em>performance</em>.clearMarks(name);
</pre>
<h3 id="Arguments">Arguments</h3>
<dl>
<dt>name {{optional_inline}}</dt>
<dd>Un {{domxref("DOMString")}} représentant le nom de l'horodatage. Si cet argument est omis, toutes les {{domxref("PerformanceEntry","entrées de performance","",1)}} avec un {{domxref("PerformanceEntry.entryType","entryType")}} de « <code>mark</code> » seront supprimés.</dd>
</dl>
<h3 id="Return_value">Valeur de retour</h3>
<p>Aucune.</p>
<h2 id="Example">Exemple</h2>
<p>L'exemple suivant montre les deux utilisations de la méthode <code>clearMarks()</code>.</p>
<pre class="brush: js">// Créé une petite aide pour montrer combien d'entrées PerformanceMark il y a.
function logMarkCount() {
console.log(
"J'ai trouvé autant d'entrées : " + performance.getEntriesByType("mark").length
);
}
// Crée une série de marqueurs.
performance.mark("squirrel");
performance.mark("squirrel");
performance.mark("monkey");
performance.mark("monkey");
performance.mark("dog");
performance.mark("dog");
logMarkCount() // "J'ai trouvé autant d'entrées : 6"
// Supprime seulement les entrées "squirrel" de PerformanceMark.
performance.clearMarks('squirrel');
logMarkCount() // "J'ai trouvé autant d'entrées : 4"
// Supprime toutes les entrées de PerformanceMark.
performance.clearMarks();
logMarkCount() // "J'ai trouvé autant d'entrées : 0"
</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('User Timing Level 2', '#dom-performance-clearmarks',
'clearMarks()')}}</td>
<td>{{Spec2('User Timing Level 2')}}</td>
<td>Clarification de <code>clearMarks()</code>.</td>
</tr>
<tr>
<td>{{SpecName('User Timing', '#dom-performance-clearmarks', 'clearMarks()')}}</td>
<td>{{Spec2('User Timing')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Performance.clearMarks")}}</p>
|