blob: 699d77b7411846ee119bbc5d6b8ff3f31cd9548e [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<link rel="import" href="data:text/html,<style>@media (max-width: 0px){div{background:red}}</style>">
<div></div>
<script>
test(() => {
assert_equals(getComputedStyle(document.querySelector("div")).backgroundColor, "rgba(0, 0, 0, 0)");
}, "(max-width: 0px) media query in import document should not evaluate to true.");
</script>