ladybird/Tests/LibWeb/Text/input/failed-img-should-not-delay-load-event-forever.html
Andreas Kling 2a86bd8c91 LibWeb: Fire the fail callback on SharedImageRequest when they fail
This fixes an issue where failed image loads would delay the document
load event forever.
2023-08-28 10:19:46 +02:00

7 lines
137 B
HTML

<script src="include.js"></script>
<img src="invalid-protocol:foo">
<script>
test(() => {
println("PASS");
});
</script>