mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
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:
Notes:
sideshowbarker
2024-07-17 03:03:15 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/4a795bef48
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user