This has done this for (years?) on CodePen in @firefox.
We have a totally normal <link rel=“stylesheet”> at the top of the page that is supposed to be render-blocking, yes?
Would love to understand.
15
3
35
0
I still don’t understand why, but there is a solution for now. We didn’t have any <script>s in our <head>, so just putting one there with a comment fixes it.
<script>/* Firefox needs this to prevent FOUC. */</script>
</head>
Hattip @JasonEtco
5
1
1
53
Firefox blocks rendering on stylesheets in the head, and also blocks script execution on them. Issues can result from things like <script defer> that runs at weird times, addons that run their own script at weird times, and perhaps some other bugs.
Curious what addons in use.
Jun 20, 2019 · 11:37 PM UTC
2


