mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
18 lines
467 B
HTML
18 lines
467 B
HTML
<html>
|
|
<title>Geolocation Test Page</title>
|
|
<body>
|
|
<script>
|
|
function clb(position) {
|
|
// Show a green background if permission is granted
|
|
document.body.style.background = "#008000";
|
|
}
|
|
function err(error) {
|
|
// Show a red background if permission is denied
|
|
if (error.code == error.PERMISSION_DENIED)
|
|
document.body.style.background = "#FF0000";
|
|
}
|
|
navigator.geolocation.getCurrentPosition(clb, err, {timeout: 0});
|
|
</script>
|
|
</body>
|
|
</html>
|