blob: a65db539bb4d02f282d56ba513c4db0759677b35 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head><title>Access parent dom</title>
</head>
<body>
<script type="text/javascript">
if (window.parent.document)
{
parent.window.postMessage("window.parent.document", "*");
}else{
parent.window.postMessage("!window.parent.document", "*");
}
</script>
</body>
</html>