Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div style="position:relative; overflow:hidden; width:100px; height:100px;">
<div style="position:absolute; width:100px; height:100px; background:green;">
<div id="trouble"></div>
</div>
</div>
<script>
var mediaQuery = window.matchMedia("print");
mediaQuery.addListener(function() {
trouble.style.width = "100px";
});
</script>