Tests/LibWeb: Fix iframe-load-event-for-bad-xml.html test

This was supposed to be an async test (and work correctly, too!)

This fixes up fa43321938
This commit is contained in:
Andreas Kling 2024-04-18 21:17:01 +02:00
parent fa1eef8bbe
commit 4a795bef48
Notes: sideshowbarker 2024-07-17 03:03:15 +09:00
2 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,11 @@
<iframe id="i1"></iframe>
<script src="../include.js"></script>
<script>
test(() => {
asyncTest((done) => {
i1.src = "data:application/xml;charset=utf-8;base64,vwo=";
i1.onload = function() {
println("OK");
done();
}
});
</script>