summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/file_browserElement_TargetBlank.html
blob: 860573a3e33a1b04f87d97a877fc3909b71cf952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<body>
<a id='link' target='_blank' href="http://example.com">Click me</a>

<script>
function clickLink() {
  // See testcase in bug 666604.
  var e = document.createEvent("MouseEvent");
  e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,
                   false, false, false, false, 0, null);
  document.getElementById('link').dispatchEvent(e);
}

addEventListener('load', function() { setTimeout(clickLink, 0) });
</script>

</body>
</html>