| <html> | |
| <head> | |
| <title>ReLayout test</title> | |
| <script> | |
| window.has_resized = false; | |
| window.resize_count = 0; | |
| window.addEventListener("resize", function (event) { | |
| window.has_resized = true; | |
| window.resize_count++; | |
| console.log( | |
| document.body.clientWidth + ', ' + document.body.clientHeight); | |
| }) | |
| </script> | |
| </head> | |
| <body> | |
| This is a test page to test the resize event. | |
| </body> | |
| </html> |