blob: a98881ee083cab9fd3862f86c58b81a74aec8c73 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script>
function simulateClick() {
var evt = new MouseEvent("click", {});
target = document.getElementById("invalid_url_link");
return target.dispatchEvent(evt);
}
</script>
</head>
<body>
<a href="a.a:@javascript:foo()"
id="invalid_url_link"
target="win">Link to invalid URL in new window</a>
</body>
</html>