Vertaling van "del CSSOM" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Para ser más concretos, considera el árbol del CSSOM anterior.
To make it more concrete, consider the CSSOM tree above.
Ten en cuenta también que el árbol anterior no es el árbol completo del CSSOM y en él solo se muestran los estilos que decidimos anular en nuestra hoja de estilos.
Also, note that the above tree is not the complete CSSOM tree and only shows the styles we decided to override in our stylesheet.
Permite incluir un elemento en el código HTML, en general como parte del <head>, lo cual activa una solicitud de la fuente para sitios web al comienzo de la ruta de acceso de representación crítica, sin tener que esperar la creación del CSSOM.
It allows you to include an element in your HTML, usually as part of the <head>, that will trigger a request for the Webfont early in the critical rendering path, without having to wait for the CSSOM to be created.
El evento domContentLoaded se activa poco después del análisis del HTML: el navegador evita bloquearse en JavaScript, y como no hay otro analizador que bloquee secuencias de comandos, la construcción del CSSOM también puede continuar en paralelo.
The domContentLoaded event fires shortly after the HTML is parsed; the browser knows not to block on JavaScript and since there are no other parser blocking scripts the CSSOM construction can also proceed in parallel.
Primero, el navegador combina el DOM y el CSSOM en un "árbol de representación", que captura todo el contenido visible del DOM en la página y toda la información de estilo del CSSOM para cada nodo.
First, the browser combines the DOM and CSSOM into a "render tree," which captures all the visible DOM content on the page and all the CSSOM style information for each node.
Los recursos asincrónicos desbloquean el analizador de documentos y permiten que el navegador evite el bloqueo del CSSOM antes de ejecutar la secuencia de comandos.
Asynchronous resources unblock the document parser and allow the browser to avoid blocking on CSSOM prior to executing the script.
El árbol del DOM captura las propiedades y relaciones del lenguaje de marcado del documento, pero no muestra indicios sobre el aspecto que debe tener el elemento al representarse Esa es tarea del CSSOM.
The DOM tree captures the properties and relationships of the document markup, but it doesn't tell us how the element will look when rendered. That's the responsibility of the CSSOM.
Andere resultaten
Para que el navegador pueda representar la página, debe construir los árboles del DOM y el CSSOM.
Before the browser can render the page, it needs to construct the DOM and CSSOM trees.
En resumen, JavaScript introduce muchas dependencias nuevas entre la ejecución del DOM, el CSSOM y JavaScript.
In short, JavaScript introduces a lot of new dependencies between the DOM, the CSSOM, and JavaScript execution.
Los árboles DOM y CSSOM se combinan para formar el árbol de representación.
The DOM and CSSOM trees are combined to form the render tree.
Combinó el DOM y el CSSOM en un árbol de representación.
Combine the DOM and CSSOM into a render tree.
El navegador bloquea la representación hasta contar con el DOM y el CSSOM.
The browser blocks rendering until it has both the DOM and the CSSOM.
Para cada nodo visible, encuentra las adecuadas reglas de CSSOM y aplícalas.
For each visible node, find the appropriate matching CSSOM rules and apply them.