diff --git a/_posts/2024-08-14-blocking-render-why-whould-you-do-that.md b/_posts/2024-08-14-blocking-render-why-whould-you-do-that.md index 5bde7ece..24772c75 100644 --- a/_posts/2024-08-14-blocking-render-why-whould-you-do-that.md +++ b/_posts/2024-08-14-blocking-render-why-whould-you-do-that.md @@ -61,7 +61,15 @@ Visually, this is how that process looks for each scenario:
-
A non-, render-, and parser-blocking file in an HTML document.
+
+ A non-, render-, and parser-blocking file in an HTML document. Imagine the +downloading file (pink) is in the <head>—even though you can +never see <head> tags or their children, they still get +rendered just like any other HTML, they’re just set to display: +none;. That said, these diagrams also apply to a downloading file (pink) +that is in the middle of the <body>. HTML is parsed +line-by-line and is very predictable. We ❤️ HTML. +
### Blocking Files