diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/performanceresourcetiming/domainlookupstart | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/performanceresourcetiming/domainlookupstart')
-rw-r--r-- | files/fr/web/api/performanceresourcetiming/domainlookupstart/index.md | 56 |
1 files changed, 23 insertions, 33 deletions
diff --git a/files/fr/web/api/performanceresourcetiming/domainlookupstart/index.md b/files/fr/web/api/performanceresourcetiming/domainlookupstart/index.md index 0e4ed58d1e..75fb3ff428 100644 --- a/files/fr/web/api/performanceresourcetiming/domainlookupstart/index.md +++ b/files/fr/web/api/performanceresourcetiming/domainlookupstart/index.md @@ -11,28 +11,31 @@ tags: - domainLookupStart translation_of: Web/API/PerformanceResourceTiming/domainLookupStart --- -<div>{{APIRef("Resource Timing API")}}</div> +{{APIRef("Resource Timing API")}} -<p>La propriété en lecture seule <strong><code>domainLookupStart</code></strong> retourne le <a href="/fr/docs/Web/API/DOMHighResTimeStamp"><code>timestamp</code></a> immédiatement avant que le navigateur ne commence la recherche du nom de domaine pour la ressource.</p> +La propriété en lecture seule **`domainLookupStart`** retourne le [`timestamp`](/fr/docs/Web/API/DOMHighResTimeStamp) immédiatement avant que le navigateur ne commence la recherche du nom de domaine pour la ressource. -<p>{{AvailableInWorkers}}</p> +{{AvailableInWorkers}} -<h2 id="Syntax">Syntaxe</h2> +## Syntaxe -<pre class="brush: js"><var>resource</var>.domainLookupStart;</pre> +```js +resource.domainLookupStart; +``` -<h3 id="Return_Value">Valeur de retour</h3> +### Valeur de retour -<p>Un <a href="/fr/docs/Web/API/DOMHighResTimeStamp"><code>DOMHighResTimeStamp</code></a> immédiatement avant que le navigateur ne commence la recherche du nom de domaine pour la ressource.</p> +Un [`DOMHighResTimeStamp`](/fr/docs/Web/API/DOMHighResTimeStamp) immédiatement avant que le navigateur ne commence la recherche du nom de domaine pour la ressource. -<h2 id="Example">Exemple</h2> +## Exemple -<p>Dans l'exemple suivant, la valeur des propriétés <code>*Start</code> et <code>*End</code> de tous les événements de <a href="/fr/docs/Web/API/PerformanceEntry/entryType">type</a> <code>"resource"</code> sont enregistrés.</p> +Dans l'exemple suivant, la valeur des propriétés `*Start` et `*End` de tous les événements de [type](/fr/docs/Web/API/PerformanceEntry/entryType) `"resource"` sont enregistrés. -<pre class="brush: js">function print_PerformanceEntries() { +```js +function print_PerformanceEntries() { // Utilise getEntriesByType() pour obtenir uniquement les événements "resource" let p = performance.getEntriesByType("resource"); - for (let i = 0; i < p.length; i++) { + for (let i = 0; i < p.length; i++) { print_start_and_end_properties(p[i]); } } @@ -46,7 +49,7 @@ function print_start_and_end_properties(perfEntry) { "responseStart", "responseEnd", "secureConnectionStart"]; - for (let i = 0; i < properties.length; i++) { + for (let i = 0; i < properties.length; i++) { // vérifie chaque propriété let supported = properties[i] in perfEntry; if (supported) { @@ -57,28 +60,15 @@ function print_start_and_end_properties(perfEntry) { } } } -</pre> +``` -<h2 id="Specifications">Spécifications</h2> +## Spécifications -<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('Resource Timing', - '#dom-performanceresourcetiming-domainlookupstart', 'domainLookupStart')}}</td> - <td>{{Spec2('Resource Timing')}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------- | +| {{SpecName('Resource Timing', + '#dom-performanceresourcetiming-domainlookupstart', 'domainLookupStart')}} | {{Spec2('Resource Timing')}} | Définition initiale. | -<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.PerformanceResourceTiming.domainLookupStart")}}</p> +{{Compat("api.PerformanceResourceTiming.domainLookupStart")}} |