diff options
Diffstat (limited to 'files/es/web/api/performancenavigation/index.html')
-rw-r--r-- | files/es/web/api/performancenavigation/index.html | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/files/es/web/api/performancenavigation/index.html b/files/es/web/api/performancenavigation/index.html new file mode 100644 index 0000000000..60ed7f1ce4 --- /dev/null +++ b/files/es/web/api/performancenavigation/index.html @@ -0,0 +1,87 @@ +--- +title: PerformanceNavigation +slug: Web/API/PerformanceNavigation +tags: + - API + - API de tiempo de navegación + - Compatibilidad + - Deprecada + - Interfaz + - Legado + - Referencia + - Rendimiento + - TIempo + - Tiempo de navegación +translation_of: Web/API/PerformanceNavigation +--- +<p>{{APIRef("Navigation Timing")}}</p> + +<div class="warning"> +<p>Esta interfaz está deprecada en <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2 specification</a>. Por favor usa la interfaz {{domxref("PerformanceNavigationTiming")}} en lugar de esta.</p> +</div> + +<p>La interfaz de legado <strong><code>PerformanceNavigation</code></strong> representa información acerca de cómo la navegación en el documento actual fue hecha.</p> + +<p>Un objeto de este tipo puede ser optenido con el llamado del atributo de solo lectura {{domxref("Performance.navigation")}}.</p> + +<h2 id="Propiedades">Propiedades</h2> + +<p><em>La interfaz <code>PerformanceNavigation</code> no hereda ninguna propiedad.</em></p> + +<dl> + <dt>{{deprecated_inline}} {{domxref("PerformanceNavigation.type")}} {{readonlyInline}}</dt> + <dd>Un <code>unsigned short</code> el cual indica cómo la navegación en esta página fue hecha. Los valores posibles son:</dd> + <dd> + <dl> + <dt><code>TYPE_NAVIGATE</code> (0)</dt> + <dd>La página fue accesada por un link, un marcador, un formulario enviado, o un script, o escribiendo la URL en la barra de direcciones.</dd> + <dt><code>TYPE_RELOAD</code> (1)</dt> + <dd>La página fue accesada haciendo click al botón de Recargar o con el método {{domxref("Location.reload()")}}.</dd> + <dt><code>TYPE_BACK_FORWARD</code> (2)</dt> + <dd>La página fue accesada por la navegación en el historial.</dd> + <dt><code>TYPE_RESERVED</code> (255)</dt> + <dd>Cualquier otra forma.</dd> + </dl> + </dd> + <dt>{{deprecated_inline}} {{domxref("PerformanceNavigation.redirectCount")}} {{readonlyInline}}</dt> + <dd>Un <code>unsigned short</code> que representa el número de REDIRECTs hechos antes de llegar a la página.</dd> +</dl> + +<h2 id="Métodos">Métodos</h2> + +<p><em><em>La interfaz <code>Performance</code> no hereda ningún método</em></em>.</p> + +<dl> + <dt>{{deprecated_inline}} {{domxref("PerformanceNavigation.toJSON()")}}</dt> + <dd>Es un jsonizer que retorna un objeto json que representa el objecto <code>PerformanceNavigation</code>.</dd> +</dl> + +<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-navigation-info-interface', 'PerformanceNavigation')}}</td> + <td>{{Spec2('Navigation Timing')}}</td> + <td>Definición inicial.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_de_navegadores">Compatibilidad de navegadores</h2> + + + +<p>{{Compat("api.PerformanceNavigation")}}</p> + +<h2 id="Ver_también">Ver también</h2> + +<ul> + <li>The {{domxref("Performance")}} that allows access to an object of this type.</li> + <li>{{domxref("PerformanceNavigationTiming")}} (part of Navigation Timing Level 2) {{experimental_inline}}</li> +</ul> |