aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/performance/timing
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
commit1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch)
tree0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/web/api/performance/timing
parent4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff)
downloadtranslated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip
initial commit
Diffstat (limited to 'files/es/web/api/performance/timing')
-rw-r--r--files/es/web/api/performance/timing/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/es/web/api/performance/timing/index.html b/files/es/web/api/performance/timing/index.html
new file mode 100644
index 0000000000..ef5e07387b
--- /dev/null
+++ b/files/es/web/api/performance/timing/index.html
@@ -0,0 +1,57 @@
+---
+title: Performance.timing
+slug: Web/API/Performance/timing
+tags:
+ - API
+ - Deprecada
+ - Legado
+ - Propiedad
+ - Rendimiento
+ - Solo lectura
+ - Tiempo de navegación
+translation_of: Web/API/Performance/timing
+---
+<p>{{APIRef("Navigation Timing")}}{{deprecated_header}}</p>
+
+<div class="warning">
+<p>Esta propiedad está deprecada en <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2 specification</a>. Por favor usa {{domxref("Performance.timeOrigin")}} en vez esta..</p>
+</div>
+
+<p>La propiedad de solo lecutra <code><strong>Performance</strong></code><strong><code>.timing</code></strong> de legado devulve un objeto {{domxref("PerformanceTiming")}} que contienen información relacionada con el rendimiento en relación a la latencia.</p>
+
+<p>Esta propiedad no está disponible en workers.</p>
+
+<h2 id="Sintaxis">Sintaxis</h2>
+
+<pre class="syntaxbox"><em>var timingInfo</em> = <em>performance</em>.timing;</pre>
+
+<h2 id="Especificaciones">Especificaciones</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Especificación</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentario</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.timing')}}</td>
+ <td>{{Spec2('Navigation Timing')}}</td>
+ <td>Definición inicial.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidad_de_navegadores">Compatibilidad de navegadores</h2>
+
+<div>
+
+
+<p>{{Compat("api.Performance.timing")}}</p>
+</div>
+
+<h2 id="Ver_también">Ver también</h2>
+
+<ul>
+ <li>The {{domxref("Performance")}} interface it belongs to.</li>
+</ul>