mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
14 lines
310 B
HTML
14 lines
310 B
HTML
<html>
|
|
<head>
|
|
<title>Simple access of geolocation</title>
|
|
<head>
|
|
<script>
|
|
function loadedWindow() {
|
|
opener.postMessage("loaded", "*");
|
|
}
|
|
navigator.geolocation.getCurrentPosition(loadedWindow, loadedWindow, {timeout:30000});
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|