Chromium Code Reviews| Index: content/test/data/android/device_files/geolocation.html |
| diff --git a/content/test/data/android/device_files/geolocation.html b/content/test/data/android/device_files/geolocation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..729c339a4df51d9607c1a7e53fab64bd753d7dc8 |
| --- /dev/null |
| +++ b/content/test/data/android/device_files/geolocation.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
| + <title>Geolocation</title> |
| + <script> |
| + var positionCount = 0; |
| + function gotPos(position) { |
| + positionCount++; |
| + } |
| + function initiate_watchPosition() { |
| + navigator.geolocation.watchPosition(gotPos, function() { }, { }); |
| + } |
| + </script> |
| + </head> |
| + <body> |
| + </body> |
| +</html> |