summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/css/cssom/size-change-print.html
blob: 564e71c07164e095eac7b8b6f0c242c9f855965d (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<link rel="mismatch" href="size-change-print-notref.html">
<div id="target">FAIL</div>
<script>
function update() {
  document.getElementById("target").innerHTML = `${window.innerWidth}x${window.innerHeight}`;
}
update();
window.addEventListener("resize", update);
</script>