tenfourfox/dom/tests/mochitest/geolocation/geolocation.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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>