2021-06-18
3441
#css#html#vanilla javascript
Ohans Emmanuel
300
Jun 18, 2021 ⋅ 12 min read

How browser rendering works — behind the scenes

Ohans Emmanuel Visit me at ohansemmanuel.com to learn more about what I do!

Recent posts:

An illustration of a hand holding a large hammer with a lightning bolt symbol. The background features a vibrant, gradient sky with shining stars. This image metaphorically represents the strength and flexibility of using Vike and vite-plugin-federation to build scalable micro-frontends. As discussed in the article, Vike allows for server-side rendering (SSR) and static-site generation (SSG), while vite-plugin-federation helps integrate shared components across different micro-frontend applications, enhancing the speed and modularity of modern web development frameworks like React, Vue, and Svelte

How to build scalable micro-frontends with Vike and Vite

Micro-frontends let you split a large web application into smaller, manageable pieces. It’s an approach inspired by the microservice architecture […]

Elijah Asaolu
Sep 18, 2024 ⋅ 6 min read
Nitro: Revolutionizing Server-Side JavaScript

Nitro.js: Revolutionizing server-side JavaScript

Nitro.js is a solution in the server-side JavaScript landscape that offers features like universal deployment, auto-imports, and file-based routing.

Iniubong Obonguko
Sep 16, 2024 ⋅ 11 min read

How to display notification badges on PWAs using the Badging API

Ding! You got a notification, but does it cause a little bump of dopamine or a slow drag of cortisol? […]

Chigozie Oduah
Sep 13, 2024 ⋅ 4 min read
JWT Authentication: Best Practices And When To Use It

JWT authentication: Best practices and when to use it

A guide for using JWT authentication to prevent basic security issues while understanding the shortcomings of JWTs.

Flavio Copes
Sep 12, 2024 ⋅ 5 min read
View all posts

29 Replies to "How browser rendering works — behind the scenes"

  1. So there are various engines in the browser: 1. The browser engine, 2. The rendering engine, 3. The JavaScript Engine
    These are the three main engines. The V8 engine is an example of a JavaScript engine. Chrome uses the V8 engine, Safari uses JavaScriptCore, and Firefox uses SpiderMonkey

  2. If you extract the inline to an external local file , the behavior is not the same.

    “`html

    body,
    html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    }

    1

    <!– http://./1.js –>

    i = 0;
    do {
    i++;
    } while (i < 1000000000)
    matrix.innerText = i;

    2

    “`

  3. this is absolutely an amazing article .these single article has cleared couple of doubts that have been tinkering in my mind for a longtime.Absolutely amazing,great work.thankyou!!!!!!!!

  4. Amazing article! Worth the read. The examples and the diagramatic explanation makes people understand the functionality much easily.

  5. Great post indeed, I loved to read it as it provides all the necessary details of what I was searching for. Thanks for great information you write it very clean. I am very lucky to get these tips from you.

Leave a Reply