blob: 9b0298ec7a9427e6f8d83b3fcde9f260a982abfc [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
</script>
Test that inline scripts inserted by a script don't block on stylesheet loads:
<script>
var didRun = false;
document.write('<link rel=stylesheet href="data:text/css,span{color:green;}"><script>didRun = true;<' + '/script>');
document.write(didRun ? "PASS" : "FAIL");
</script>
</span>