1
0
Fork 0
firefox/dom/geolocation/test/mochitest/geolocation.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02: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>