trisquel-icecat/icecat/dom/geolocation/test/mochitest/geolocation.html
2025-10-06 02:35:48 -06:00

13 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>