Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/printing/no-resize-event-print.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>No resize event on the original page when printing</title>
<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>