blob: 9a2e95fad0503095d6eafda98c10cff25d4ade13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test window for parent navigation by location tests</title>
<script>
function onNav() {
parent.postMessage(window.name, "*");
}
window.onload = onNav;
window.onhashchange = onNav;
</script>
</head>
<body>
<iframe name="childIframe" sandbox="allow-scripts allow-same-origin allow-top-navigation"></iframe>
</body>
</html>
|