summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/test_bug279495.html
blob: 79a169567774f992d335f77c2678fe2c122c6708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
    <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    <script type="text/javascript" src="NavigationUtils.js"></script>
<script>
window.onload = function () {
  document.getElementById("link0").href = target_url;
  document.getElementById("link1").href = target_url;

  sendMouseEvent({type:"click"}, "link0");
  sendMouseEvent({type:"click"}, "link1");

  xpcWaitForFinishedFrames(function() {
    countAndClose("window0", 1);
    countAndClose("window1", 1);

    xpcCleanupWindows();
    SimpleTest.finish();
  }, 2);
}

function countAndClose(name, expected_count) {
  var array_of_frames = xpcGetFramesByName(name);
  is(array_of_frames.length, expected_count,
     "Should only open " + expected_count +
     " window(s) with name " + name + " using a fancy hyperlink.");

  for (var i=0; i < array_of_frames.length; ++i)
    array_of_frames[i].close();
}
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=279495">Mozilla Bug 279495</a>
<div id="links">
<a id="link0" target="window0" onclick="window.open('blank.html', 'window0', 'width=10,height=10');">This is a fancy hyperlink</a>
<a id="link1" target="window1" onclick="window.open('http://test1.example.org:80/tests/docshell/test/navigation/blank.html', 'window1', 'width=10,height=10');">This is a fancy hyperlink</a>
</div>
<pre id="test">
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>