Newer
Older
minerva / Tests / LibWeb / Text / input / iframe-load-event-for-xml-src.html
@minerva minerva on 13 Jul 326 bytes Initial commit
<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>