diff options
Diffstat (limited to 'Base/home/anon/www/location.html')
-rw-r--r-- | Base/home/anon/www/location.html | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Base/home/anon/www/location.html b/Base/home/anon/www/location.html deleted file mode 100644 index 5633fa3df9..0000000000 --- a/Base/home/anon/www/location.html +++ /dev/null @@ -1,33 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>window.location test</title> - <style> - #set_href { background-color: red; color: yellow; } - #reload { background-color: blue; color: #ccc; } - </style> - </head> - <body> - <pre></pre> - <div id="set_href">Click me to set location.href!</div> - <div id="reload">Click me to call location.reload()!</div> - <script> - var pre = document.querySelector("pre"); - pre.innerHTML += "href: " + location.href + '\n'; - pre.innerHTML += "protocol: " + location.protocol + '\n'; - pre.innerHTML += "host: " + location.host + '\n'; - pre.innerHTML += "hostname: " + location.hostname + '\n'; - pre.innerHTML += "pathname: " + location.pathname+ '\n'; - pre.innerHTML += "hash: " + location.hash + '\n'; - pre.innerHTML += "search: " + location.search + '\n'; - - document.getElementById("set_href").addEventListener("mousedown", function() { - window.location.href = 'http://serenityos.org/'; - }); - - document.getElementById("reload").addEventListener("mousedown", function() { - window.location.reload(); - }); - </script> - </body> -</html> |