mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
12 lines
290 B
HTML
12 lines
290 B
HTML
<!DOCTYPE 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>
|