mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-08 09:31:58 +00:00
11 lines
295 B
HTML
11 lines
295 B
HTML
<h1>My App</h1>
|
|
<p>This is a test page</p>
|
|
<div>Width:</div>
|
|
<div id="j_width"></div>
|
|
<div>Height:</div>
|
|
<div id="j_height"></div>
|
|
<script>
|
|
document.getElementById('j_width').innerText = window.innerWidth;
|
|
document.getElementById('j_height').innerText = window.innerHeight;
|
|
</script>
|
|
</body> |