blob: b6fadf00e1e8fadef4a01d6037480bbe47d568bd [file] [log] [blame]
<html>
<head>
<script src="../resources/cross-frame-access.js"></script>
</head>
<body>
<p>This tests that the main frame can access the contents of an iframe that contains a javascipt: URL loaded page</p>
<iframe id="aFrame"></iframe>
<pre id="console"></pre>
<script>
var url = "javascript:\"<html><body><p id=\'accessMe\'></p><p>Inner iframe.</p></body></html>\"";
var iframeId ="aFrame";
var passMessage = "PASS: Cross frame access to a javascript: URL was allowed!";
var failMessage = "FAIL: Cross frame access to a javascript: URL was denied.";
canAccessFrame(url, iframeId, passMessage, failMessage);
</script>
</body>
</html>