blob: 32a060bed4aad78ee708cc5ab85b184f9159fc1b [file] [log] [blame]
<meta content="frame-src 'none'" http-equiv="Content-Security-Policy"/>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.onload = function() {
var i = document.createElement("iframe");
document.body.appendChild(i);
i.contentWindow.location = "data:,hello";
i.onload = function() {
document.body.innerText = "PASS";
if (window.testRunner)
testRunner.notifyDone();
}
}
</script>