gecko-dev/dom/browser-element/mochitest/file_browserElement_TargetB...

19 строки
477 B
HTML

<html>
<body>
<a id='link' target='_blank' href="http://example.com" rel="opener">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>