blob: ba451c20accb0bfb4865c28d397ca93910ee2421 [file] [log] [blame]
<!DOCTYPE html>
<iframe src="resources/sandbox.py?sandbox=allow-top-navigation%20allow-same-origin"></iframe>
<script>
if (window.testRunner)
testRunner.dumpAsText();
window.onload = function() {
var frame = document.getElementsByTagName("iframe")[0];
if (frame.contentDocument)
alert("PASS: Iframe was not in a unique origin");
else
alert("FAIL: Iframe was in a unique origin");
};
</script>