head tagdisabled link tag is included towards the end of the head elementdisabled property while the document is still loading? It should theoretically be blocking, but probably won’t be.The styles are referenced in the
<head> as a <link disabled rel=stylesheet /> element. But immediately following this link tag is a script tag that removes the disabled property from the link. the linked stylesheet should take slightly over 5 seconds to load.
disabled property).A script embedded in this paragraph was executed (but not necessarily rendered) seconds after this small HTML page downloaded. (Technically, after it began downloading, but it is such a small file that it is essentially, usually instantaneous.) Values close to 0 indicate that the stylesheet was not requested in a blocking manner; values over 5s indicate that it was.
There may be a 5-second delay when enabling styles due to differences in how browsers handle a stylesheet that was loaded into the current page already but with headers that disable caching (which I do for testing purposes).
return to test suite · tests by alan hogan