blob: e6f1acab2c32326a02d56f591599052f7514a034 [file] [log] [blame]
<script>
let isSameOrigin = true;
try { top.name } catch (e) { isSameOrigin = false; }
if (isSameOrigin)
alert("PASS");
else
console.log("PASS");
var shouldNotifyDone = document.location.search.indexOf("?notifyDone=1") !== -1 && window.testRunner;
if (shouldNotifyDone)
testRunner.notifyDone();
</script>