haikuwebkit/LayoutTests/fast/dom/css-mediarule-parentRule.html

28 lines
722 B
HTML

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description(
'This tests that calling parentRule on the child rule of MediaRule is equal to that MediaRule.'
);
if (window.testRunner)
testRunner.dumpAsText();
var head = document.getElementsByTagName('head')[0];
head.innerHTML = "<style>@media all { a { border-color: red; } }</style>";
var styleSheetList = document.styleSheets;
var styleSheet = styleSheetList[0];
var mediaRule = styleSheet.cssRules[0];
var childRule = mediaRule.cssRules[0];
shouldBe("childRule.parentRule", "mediaRule")
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>