Mercurial Hosting > chat
view src/tools/dimensions.html @ 93:d0566cc4a2ac default tip
uploa fix
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 03 Apr 2025 19:47:48 -0600 |
parents | e22a1ba4b2ed |
children |
line wrap: on
line source
<!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> 'use strict'; function p() { document.body.innerText = '' + window.innerWidth + 'px innerWidth\n' + window.innerHeight + 'px innerHeight\n' + '\n' + window.outerWidth + 'px outerWidth\n' + window.outerHeight + 'px outerHeight\n' ; } </script> </head> <body onload="p()" onresize="p()"> </body> </html>