summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/reftest/size.html
blob: a60befbf038f7faf29e714ce7538dfea0114fbf7 (plain)
1
2
3
4
5
6
<!doctype html>
<link rel=match href=size-ref.html>
<p>innerWidth x innerHeight: <span id=size></span></p>
<script>
document.querySelector("#size").textContent = window.innerWidth + "x" + window.innerHeight;
</script>