gecko-dev/testing/web-platform/tests/infrastructure/reftest/size.html

7 строки
218 B
HTML

<!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>