aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performancetiming/domcomplete/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/performancetiming/domcomplete/index.html')
-rw-r--r--files/fr/web/api/performancetiming/domcomplete/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/fr/web/api/performancetiming/domcomplete/index.html b/files/fr/web/api/performancetiming/domcomplete/index.html
new file mode 100644
index 0000000000..a8b3d0b028
--- /dev/null
+++ b/files/fr/web/api/performancetiming/domcomplete/index.html
@@ -0,0 +1,57 @@
+---
+title: PerformanceTiming.domComplete
+slug: Web/API/PerformanceTiming/domComplete
+tags:
+ - API
+ - Backwards compatibility
+ - Deprecated
+ - Navigation Timing
+ - PerformanceTiming
+ - Property
+ - Propriété
+ - Read-only
+ - legacy
+ - domComplete
+translation_of: Web/API/PerformanceTiming/domComplete
+---
+<p>{{APIRef("Navigation Timing")}}</p>
+
+<div class="notecard deprecated">
+ <p><strong>Attention :</strong> Cette interface est dépréciée dans la spécification <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2</a>. Veuillez utiliser la propriété <a href="/fr/docs/Web/API/PerformanceNavigationTiming/domComplete"><code>PerformanceNavigationTiming.domComplete</code></a> de l'interface <a href="/fr/docs/Web/API/PerformanceNavigationTiming"><code>PerformanceNavigationTiming</code></a> à la place.</p>
+</div>
+
+<p class="summary">L'ancienne propriété en lecture seule <code><strong>domComplete</code></strong> retourne un <code>unsigned long long</code> représentant le moment, en millisecondes depuis l'époque UNIX, où le parseur a terminé son travail sur le document principal, c'est-à-dire lorsque son <a href="/fr/docs/Web/API/Document/readyState"><code>Document.readyState</code></a> passe à <code>'complete'</code> et que l'événement <a href="/fr/docs/Web/API/Document/readystatechange_event"><code>readystatechange</code></a> correspondant est lancé.</p>
+
+<h2 id="Syntax">Syntaxe</h2>
+
+<pre class="brush: js">let <var>time</var> = <var>performanceTiming</var>.domComplete;</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('Navigation Timing', '#dom-performancetiming-domcomplete',
+ 'PerformanceTiming.domComplete')}}</td>
+ <td>{{Spec2('Navigation Timing')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.PerformanceTiming.domComplete")}}</p>
+
+<h2 id="See_also">Voir aussi</h2>
+
+<ul>
+ <li>L'interface <a href="/fr/docs/Web/API/PerformanceTiming"><code>PerformanceTiming</code></a> à laquelle elle appartient.</li>
+</ul>