Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /infrastructure/reftest/size.html - WPT Dashboard Interop Dashboard
<!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>