blob: 29124547274726d5e585acf50a75ec1ea8e50eef [file] [log] [blame]
<html>
<body>
<a id="test" onclick="go()">Go?</a>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
oClickEvent = document.createEvent("MouseEvents");
oClickEvent.initEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
document.getElementById("test").dispatchEvent(oClickEvent);
function go() {
oWin = window.open("about:blank", "blabla");
alert(oWin ? "FAIL" : "PASS");
}
</script>
</body>
</html>