diff options
Diffstat (limited to 'chrome/test/data/geolocation/invalid_request_url.html')
-rw-r--r-- | chrome/test/data/geolocation/invalid_request_url.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/test/data/geolocation/invalid_request_url.html b/chrome/test/data/geolocation/invalid_request_url.html new file mode 100644 index 0000000..2897a8b --- /dev/null +++ b/chrome/test/data/geolocation/invalid_request_url.html @@ -0,0 +1,18 @@ +<html> +<head> +<script> +function requestGeolocationFromInvalidUrl() { + var o = window.open(); + o.navigator.geolocation; + o.close(); + delete o; + return "1"; +} +function isAlive() { + return "1"; +} +</script> +</head> +<body></body> +</html> + |