blob: 8d2386e012891dd7b7172deb2964ec8051ea270b [file] [log] [blame]
<html lang=en>
<head>
<script src="../../resources/js-test.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>
</body>