Backout a74bd5095902, Bug 959405 - Please update the Buri Moz-central, 1.3, 1.2 with...
[gecko.git] / docshell / test / test_bug598895.html
blob52b9537be0a47c9323743a8b27b6d04c6eb0b139
1 <!DOCTYPE HTML>
2 <html>
3 <!--
4 https://bugzilla.mozilla.org/show_bug.cgi?id=598895
5 -->
6 <head>
7 <title>Test for Bug 598895</title>
8 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
9 <script type="text/javascript" src="/tests/SimpleTest/WindowSnapshot.js"></script>
10 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
11 </head>
12 <body>
13 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=598895">Mozilla Bug 598895</a>
14 <p id="display"></p>
15 <div id="content" style="display: none">
17 </div>
18 <pre id="test">
19 <script type="application/javascript">
21 /** Test for Bug 598895 **/
22 SimpleTest.waitForExplicitFinish();
24 addLoadEvent(function() {
25 var win1 = window.open();
26 win1.document.body.textContent = "Should show";
28 var windowsLoaded = 0;
30 window.onmessage = function (ev) {
31 is(ev.data, "loaded", "Message should be 'loaded'");
32 if (++windowsLoaded == 2) {
33 var one = snapshotWindow(win1);
34 var two = snapshotWindow(win2);
35 var three = snapshotWindow(win3);
36 win1.close();
37 win2.close();
38 win3.close();
39 ok(compareSnapshots(one, two, true)[0], "Popups should look identical");
40 ok(compareSnapshots(one, three, false)[0], "Popups should not look identical");
42 SimpleTest.finish();
46 var win2 = window.open("data:text/html,<script>window.onload = function() { opener.postMessage('loaded', '*'); }</" + "script><body>Should show</body>");
48 var win3 = window.open("data:text/html,<script>window.onload = function() { opener.postMessage('loaded', '*'); }</" + "script><body></body>");
49 });
50 </script>
51 </pre>
52 </body>
53 </html>