106-import.html (671B)
1 <!DOCTYPE html> 2 <html><head> 3 <title> scheduler: stylesheets blocking scripts</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <!-- this stylesheet blocks scripts --> 7 <link rel="stylesheet" href="css/import.css?pipe=trickle(d2)"> 8 </head> 9 <body> 10 <div id="log">FAILED (This TC requires JavaScript enabled)</div> 11 <div id="test">Test</div> 12 13 <script> 14 test(function() { 15 assert_equals(getComputedStyle(document.getElementById("test")).position, 16 "fixed"); 17 }); 18 </script> 19 </body></html>