mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-15 05:22:04 +00:00
This was supposed to be an async test (and work correctly, too!)
This fixes up fa43321938
11 lines
274 B
HTML
11 lines
274 B
HTML
<iframe id="i1"></iframe>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest((done) => {
|
|
i1.src = "data:application/xml;charset=utf-8;base64,vwo=";
|
|
i1.onload = function() {
|
|
println("OK");
|
|
done();
|
|
}
|
|
});
|
|
</script>
|