ladybird/Tests/LibWeb/Text/input/no-window-resize-on-load.html
2025-03-20 11:50:49 +01:00

13 lines
244 B
HTML

<!DOCTYPE html>
<script>
var resizeCount = 0;
onresize = function() {
++resizeCount;
}
</script>
<script src="include.js"></script>
<script>
test(() => {
println("resize count: " + resizeCount);
})
</script>