mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 07:22:21 +00:00
14 lines
382 B
HTML
14 lines
382 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<iframe id="i1"></iframe>
|
|
<script>
|
|
asyncTest((done) => {
|
|
i1.src = '../../data/bad.xml';
|
|
i1.onload = function() {
|
|
println("Got load event");
|
|
println(i1.contentDocument);
|
|
println(i1.contentDocument.documentElement.innerText);
|
|
done();
|
|
}
|
|
});
|
|
</script>
|