blob: cc26164e413fe4877ef7ce887b617ad276ec0438 (
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
|
---
title: performance.timing
slug: Web/API/Performance/timing
tags:
- API
- Rétrocompatibilité
- Déprécié
- Navigation Timing
- Performance
- Property
- Propriété
- Read-only
- Lecture seule
- Reference
translation_of: Web/API/Performance/timing
---
<p>{{deprecated_header}}{{APIRef("Navigation Timing")}}</p>
<div class="notecard warning">
<p>Cette propriété 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 l'interface {{domxref("PerformanceNavigationTiming")}} à la place.</p>
</div>
<p class="seoSummary">L'ancienne propriété <strong><code>Performance.timing</code></strong> renvoie un objet {{domxref("PerformanceTiming")}} en lecture seule contenant des informations de performance liées à la latence.</p>
{{warning("Cette propriété n'est pas disponible dans les Web Workers.")}}
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush: js">
<var>timingInfo</var> = performance.timing;
</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 Level 2', '#obsolete')}}</td>
<td>{{Spec2('Navigation Timing Level 2')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Performance.timing")}}</p>
<h2 id="See_also">Voir aussi</h2>
<ul>
<li>L'interface {{domxref("Performance")}} à laquelle il appartient.</li>
</ul>
|