blob: 39921e94fc26b19b0a2d2274f079723e2a6df3e4 [file] [log] [blame]
<html lang=en>
<head>
<script src="../js/resources/js-test-pre.js"></script>
<style>
#test { background-color: red; }
@media all and (min-width:0px)
{
#test { background-color: green }
}
</style>
</head>
<body>
<div id=test>foo</div>
<script>
description("Test for bug 75633");
shouldBe('window.getComputedStyle(document.getElementById("test")).backgroundColor','"rgb(0, 128, 0)"');
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>