aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performance/clearmarks/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/performance/clearmarks/index.html')
-rw-r--r--files/fr/web/api/performance/clearmarks/index.html93
1 files changed, 93 insertions, 0 deletions
diff --git a/files/fr/web/api/performance/clearmarks/index.html b/files/fr/web/api/performance/clearmarks/index.html
new file mode 100644
index 0000000000..31634399f9
--- /dev/null
+++ b/files/fr/web/api/performance/clearmarks/index.html
@@ -0,0 +1,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 class="seoSummary">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>