
Reduction from Acid3 that was fixed by changing guess_mime_type_based_on_filename() to support xml extension.
14 lines
326 B
HTML
14 lines
326 B
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>
|