blob: 5f8b750398d008a2f6af79e95e9a88dd3c0ce8a7 [file] [log] [blame]
<html>
<head>
<script src="../resources/cross-frame-access.js"></script>
<script>
window.onload = function()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpChildFramesAsText();
testRunner.waitUntilDone();
}
if (window.testRunner) {
setTimeout(pollForTest, 1);
} else {
log("To run the test, click the button below when the opened window finishes loading.");
var button = document.createElement("button");
button.appendChild(document.createTextNode("Run Test"));
button.onclick = runTest;
document.body.appendChild(button);
}
}
pollForTest = function()
{
if (!testRunner.globalFlag) {
setTimeout(pollForTest, 1);
return;
}
runTest();
testRunner.notifyDone();
}
runTest = function()
{
var frame = document.getElementById('aFrame');
frame.src = 'javascript:"FAIL: this should not have been loaded."';
frame.src = ' javascript:"FAIL: this should not have been loaded."';
frame.src = 'java\0script:"FAIL: this should not have been loaded."';
frame.src = 'javascript\t:"FAIL: this should not have been loaded."';
frame.src = 'javascript\1:"FAIL: this should not have been loaded."';
}
</script>
</head>
<body>
<p>This test passes as long as the word 'FAIL' and an accompanying message do not appear in the subframe.</p>
<pre id='console'></pre>
<iframe id='aFrame' name='aFrame' src='http://localhost:8000/security/resources/cross-frame-iframe.html'></iframe>
</body>
</html>