popup_size.html (349B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Page recording its size</title> 6 </head> 7 <body> 8 <script> 9 var initialSize = { width: innerWidth, height: innerHeight }; 10 var loadSize; 11 onload = () => { 12 loadSize = { width: innerWidth, height: innerHeight }; 13 }; 14 </script> 15 </body> 16 </html>