blob: fe7e6b3bbd2e7fc84b9a4f963dc6b6a427231e44 [file] [log] [blame]
<html>
<head>
<script src="../resources/cross-frame-access.js"></script>
<script>
window.onload = function()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpChildFrames();
testRunner.waitUntilDone();
}
var innerURL = 'javascript:\\\"<html>'
+ "<head>"
+ "<scr" + "ipt>"
+ "window.onload = function()"
+ "{"
+ 'window.top.postMessage(\\\\\\"run test\\\\\\", \\\\\\"*\\\\\\");'
+ "}"
+ "</scr" + "ipt>"
+ "</head>"
+ "<body>"
+ '<p id=\\\\\\"accessMe\\\\\\">FAIL: Cross frame access to a javascript: URL 2 levels deep was denied.</p>'
+ "<p>Inner-inner iframe.</p>"
+ "</body>"
+ '</html>\\\"';
var url = "javascript:\"<html>"
+ "<body>"
+ "<iframe src='" + innerURL + "'></iframe>"
+ "<p>Inner iframe.</p>"
+ "</body>"
+ "</html>\"";
var iframe = document.getElementById("aFrame");
iframe.src = url;
window.addEventListener('message', function ()
{
runTest();
if (window.testRunner)
testRunner.notifyDone();
});
}
runTest = function()
{
try {
window[0][0].document.getElementById('accessMe').innerHTML = 'PASS: Cross frame access to a javascript: URL 2 levels deep was allowed!';
log('PASS: Cross frame access to a javascript: URL 2 levels deep was allowed!');
} catch (e) {
log('FAIL: Cross frame access to a javascript: URL 2 levels deep was denied.');
}
}
</script>
</head>
<body>
<p>This tests that the main frame has access to a javascript: URL loaded in an iframe inside another javascript: URL loaded iframe.</p>
<iframe id="aFrame" name="aFrame" style="width: 500px; height: 300px;"></iframe>
<pre id='console'></pre>
</body>
</html>