ladybird/Tests/LibWeb/Text/input/iframe-load-event-for-xml-src.html

16 lines
342 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!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>