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

15 lines
326 B
HTML
Raw Normal View History

<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>