mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 17:51:03 +00:00
11 lines
245 B
HTML
11 lines
245 B
HTML
|
|
<iframe id="i1"></iframe>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
i1.src = "data:application/xml;charset=utf-8;base64,vwo=";
|
||
|
|
i1.onload = function() {
|
||
|
|
println("OK");
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|