mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
18 lines
393 B
HTML
18 lines
393 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<title>Geolocation incomplete position leak test</title>
|
|
<script type="text/javascript">
|
|
|
|
function successCallback(position) {}
|
|
function errorCallback() {}
|
|
|
|
function init() {
|
|
navigator.geolocation.getCurrentPosition(successCallback, errorCallback);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
</body>
|
|
</html>
|