Vertaling van "el 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.
¿Qué ocurriría si el navegador no ha terminado de descargar y compilar el CSSOM cuando queramos ejecutar nuestra secuencia de comandos?
What if the browser hasn't finished downloading and building the CSSOM when we want to run our script?
La respuesta es simple y no muy buena para el rendimiento: el navegador demora la ejecución de la secuencia de comandos y la construcción del DOM hasta haber terminado de descargar y construir el CSSOM.
The answer is simple and not very good for performance: the browser delays script execution and DOM construction until it has finished downloading and constructing the CSSOM.
¿Por qué el CSSOM tiene una estructura de árbol?
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.
Dado que la página también está directamente integrada a la página, el navegador no puede ejecutarla hasta construir el CSSOM.
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.
A continuación, hablaremos sobre el árbol de representación que vincula al DOM y el CSSOM.
Next, lets talk about the render tree that links the DOM and CSSOM together.
La ejecución de JavaScript bloquea el CSSOM.
En la construcción del árbol de representación, vimos que la ruta de representación crítica requiere el DOM y el CSSOM para construir el árbol de representación.
In the render tree construction we saw that the critical rendering path requires both the DOM and the CSSOM to construct the render tree.
Si el DOM o el CSSOM se modifican, deberás repetir el proceso para conocer los píxeles que se deben representar nuevamente en la pantalla.
If either the DOM or CSSOM were modified, you would have to repeat the process in order to figure out which pixels would need to be re-rendered on the screen.
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.
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.
El navegador construye el CSSOM una vez que recibe todo el contenido CSS, y lo combina con el árbol del DOM para construir el árbol de representación.
The browser constructs the CSSOM after all of the CSS content is received and combines it with the DOM tree to construct the render tree.