blob: 40223ed104c7bc6b071a0c8aa5800a3f69832b85 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Stylesheet in BODY with @import blocking scripts</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="testlib/testlib.js"></script>
</head>
<body>
<div id="test">Test</div>
<!-- this stylesheet blocks scripts -->
<link rel="stylesheet" href="css/import.css?pipe=trickle(d2)">
<script>
test(function() {
assert_equals(getComputedStyle(document.getElementById("test")).position,
"fixed");
});
</script>
</body>
</html>