Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/printing/no-resize-event-print.html
<!doctype html> <title>No resize event on the original page when printing</title> <link rel="help" href="https://drafts.csswg.org/mediaqueries-4/#valdef-media-print"> <link rel="match" href="no-resize-event-ref.html"> <div id="target">PASS</div> <script> window.addEventListener("resize", function() { document.getElementById("target").innerHTML = `FAIL: ${window.innerWidth}x${window.innerHeight}`; }) </script>
/css/printing/no-resize-event-ref.html
<!doctype html> <div>PASS</div>