haikuwebkit/LayoutTests/fast/dom/css-cached-import-rule.html

26 lines
545 B
HTML

<head>
<style>
@import url("resources/css-insert-import-rule-red.css");
div {
width: 100px;
height: 100px;
}
</style>
<script>
function test() {
document.styleSheets[0].insertRule('@import url("resources/css-insert-import-rule.css");', 0);
if (location.href.indexOf("?") == -1) {
if (window.testRunner)
testRunner.waitUntilDone();
location.href = location.href + "?";
} else if (window.testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body onload="test()";>
<div></div>
</body>