Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom-view/matchMedia-display-none-iframe.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Test: matchMedia works on display: none iframes</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function frameLoaded(frame) {
test(function() {
assert_true(frame.contentWindow.matchMedia("all").matches);
}, "matchMedia should work in display: none iframes");
test(function() {
assert_true(frame.contentWindow.matchMedia("(min-width: 0)").matches);
assert_true(!frame.contentWindow.matchMedia("(min-width: 1px)").matches);
}, "matchMedia should assume a 0x0 viewport in display: none iframes");
}
</script>
<iframe style="display: none" onload="frameLoaded(this)"></iframe>