blob: 58ab852f3434a190a68ebfb6e15750c5ee310273 [file] [log] [blame]
<!DOCTYPE>
<html>
<head>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
</script>
</head>
<body>
<?php
$targetAttribute = "";
if (!empty($_GET["target"]))
$targetAttribute = 'target="' . $_GET["target"] . '"';
?>
<a href="<?php echo $_GET['href']; ?>" <?php echo $targetAttribute; ?>>Click</a>
<script>document.querySelector("a").click()</script>
</body>
</html>