haikuwebkit/LayoutTests/webarchive/loading/missing-data.html

18 lines
507 B
HTML

<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
if (window.internals)
internals.setAlwaysAllowLocalWebarchive(true);
onload = function() {
frame = document.createElement("iframe");
frame.src = "resources/missing-data.webarchive";
frame.onload = function() {
if (window.testRunner)
testRunner.notifyDone();
}
document.body.appendChild(frame);
}
</script>