ladybird/Tests/LibWeb/Text/input/window-scroll-while-parsing.html
Timothy Flynn 96082d6ae1 LibWeb: Port some manually async tests to use asyncTest
These tests were mostly async tests written in a manual way. This ports
them to use the standard asyncTest() infrastructure.

This is mostly just to reduce calls to internals.signalTextTestIsDone,
which will have a required parameter in an upcoming test.
2024-10-03 07:07:28 -04:00

11 lines
220 B
HTML

<body>
<script>
window.scrollTo(200, 200);
</script>
<script src="include.js"></script>
<script>
test(() => {
println("PASS (didn't crash)");
});
</script>
</body>