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