ladybird/Tests/LibWeb/Text/input/no-window-resize-on-load.html

14 lines
244 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script>
var resizeCount = 0;
onresize = function() {
++resizeCount;
}
</script>
<script src="include.js"></script>
<script>
test(() => {
println("resize count: " + resizeCount);
})
</script>