geo_leak_test.html (385B)
1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> 4 <title>Geolocation incomplete position leak test</title> 5 <script type="text/javascript"> 6 7 function successCallback() {} 8 function errorCallback() {} 9 10 function init() { 11 navigator.geolocation.getCurrentPosition(successCallback, errorCallback); 12 } 13 </script> 14 </head> 15 <body onload="init()"> 16 </body> 17 </html>