tenfourfox/dom/tests/browser/geo_leak_test.html

18 lines
393 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>