blob: 6d295248c39ae0c18be38c530b0704afe02ec555 [file] [log] [blame]
<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>