Files
serenity/Tests/LibWeb/Text/input/window-scroll-while-parsing.html
Timothy Flynn 8b4b8d914c 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.

(cherry picked from commit 96082d6ae127832eb9b644d2abee892284317b6a)
2024-11-24 22:42:15 -05:00

12 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>