Hacker News new | ask | show | jobs
by testvox 3109 days ago
It shouldn't be up to the browser to implement web standards? What should browsers be doing then?
1 comments

What is the web standard about delaying scripts deliberately encoded into the page?

Why downvote and no explanation? I want to know if I missed something.

Per the standards, scheduling and prioritization of downloads is up to browsers.

The standard also defines that scripts that are not async have to be executed before later content can be parsed (because they can document.write()). They can still be loaded with any priority the browser wants; they just need to block observable DOM construction.

Thank you.