mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
15 lines
326 B
HTML
15 lines
326 B
HTML
|
|
<script src="include.js"></script>
|
||
|
|
<iframe id="b" src="../data/document.xml"></iframe>
|
||
|
|
<script>
|
||
|
|
asyncTest(done => {
|
||
|
|
b.onload = function () {
|
||
|
|
println("load");
|
||
|
|
done();
|
||
|
|
};
|
||
|
|
b.onerror = function () {
|
||
|
|
println("error");
|
||
|
|
done();
|
||
|
|
};
|
||
|
|
});
|
||
|
|
</script>
|