summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/parent.html
blob: 74722b8bdfdf615d3cadb0d27a3228be8ba5f857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<body>
This document contains a frame.
<div><iframe src="blank.html"></iframe></div>
<script>
frames[0].name = window.name + "_child0";
window.onload = function() {
  opener.postMessage("ready", "*");
};
</script>
</body>
</html>