Considering whether document.readyState and DOMContentLoaded events should be mocked. Thoughts?
These aren't exactly directly related to resource loading, except that a lot of people conflate DOM-ready with "resources have loaded" -- a really bad assumption, but a persistent one nonetheless -- so in theory someone may want to test the interaction of resources loading after DOM ready.
Considering whether
document.readyState
andDOMContentLoaded
events should be mocked. Thoughts?These aren't exactly directly related to resource loading, except that a lot of people conflate DOM-ready with "resources have loaded" -- a really bad assumption, but a persistent one nonetheless -- so in theory someone may want to test the interaction of resources loading after DOM ready.