aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performancetiming/unloadeventend/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/performancetiming/unloadeventend/index.md')
-rw-r--r--files/fr/web/api/performancetiming/unloadeventend/index.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/fr/web/api/performancetiming/unloadeventend/index.md b/files/fr/web/api/performancetiming/unloadeventend/index.md
new file mode 100644
index 0000000000..03a0cbe390
--- /dev/null
+++ b/files/fr/web/api/performancetiming/unloadeventend/index.md
@@ -0,0 +1,57 @@
+---
+title: PerformanceTiming.unloadEventEnd
+slug: Web/API/PerformanceTiming/unloadEventEnd
+tags:
+ - API
+ - Backwards compatibility
+ - Deprecated
+ - Navigation Timing
+ - PerformanceTiming
+ - Property
+ - Propriété
+ - Read-only
+ - legacy
+ - unloadEventEnd
+translation_of: Web/API/PerformanceTiming/unloadEventEnd
+---
+<p>{{APIRef("Navigation Timing")}}</p>
+
+<div class="warning">
+ <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/unloadEventEnd"><code>PerformanceNavigationTiming.unloadEventEnd</code></a> de l'interface <a href="/fr/docs/Web/API/PerformanceNavigationTiming"><code>PerformanceNavigationTiming</code></a> à la place.</p>
+</div>
+
+<p>L'ancienne propriété en lecture seule <code><strong>unloadEventEnd</code></strong> retourne un <code>unsigned long long</code> représentant le moment, en millisecondes depuis l'époque UNIX, où le gestionnaire d'événement <a href="/fr/docs/Web/API/Window/unload_event"><code>unload</code></a> se termine. S'il n'y a pas de document précédent, ou si le document précédent, ou l'une des redirections nécessaires, n'est pas de la même origine, la valeur retournée est <code>0</code>.</p>
+
+<h2 id="Syntax">Syntaxe</h2>
+
+<pre class="brush: js">let <var>time</var> = <var>performanceTiming</var>.unloadEventEnd;</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-unloadeventend',
+ 'PerformanceTiming.unloadEventEnd')}}</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.unloadEventEnd")}}</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>