tenfourfox/webapprt/test/chrome/geolocation-prompt-noperm.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
517 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
window.onload = function() {
function failureCallback() {
document.getElementById("msg").textContent = "Failure.";
}
function successCallback() {
document.getElementById("msg").textContent = "Success.";
}
navigator.geolocation.getCurrentPosition(successCallback, failureCallback);
};
</script>
<p id="msg">Webapp waiting for geolocation...</p>
</body>
</html>