blob: d161c5f913008204ac9f1153ee7b7b15db336064 [file] [log] [blame]
<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>