mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 18:11:52 +00:00
15 lines
342 B
HTML
15 lines
342 B
HTML
<!DOCTYPE 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>
|