blob: 3b9717263f2c80d2ec7b321d7fea3f62ecba9105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>file_anchor_ping.html</title>
</head>
<body onload="document.body.firstElementChild.click()">
<a href="/">click me</a>
<script>
document.body.firstElementChild.ping = window.location.search.slice(1);
</script>
</body>
</html>
|