Sign in
chromium
/
chromium
/
src.git
/
61.0.3140.1
/
.
/
third_party
/
WebKit
/
Source
/
web
/
tests
/
data
/
window_dimensions.html
blob: 55c58102fd47d87b808ece8a4dfa5a9819d967b0 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<meta
name
=
"viewport"
content
=
"width=1600"
>
<script>
var
innerWidth
=
window
.
innerWidth
;
var
innerHeight
=
window
.
innerHeight
;
document
.
write
(
'<div id="output">'
+
innerWidth
+
'x'
+
innerHeight
+
'</div>'
);
</script>