Also had to fix eslint and file-whitespace errors because the tests have been shadowed previously. Differential Revision: https://phabricator.services.mozilla.com/D245621
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>
|