diff options
Diffstat (limited to 'dom/html/test/file_anchor_ping.html')
-rw-r--r-- | dom/html/test/file_anchor_ping.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/html/test/file_anchor_ping.html b/dom/html/test/file_anchor_ping.html new file mode 100644 index 000000000..3b9717263 --- /dev/null +++ b/dom/html/test/file_anchor_ping.html @@ -0,0 +1,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> |