mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
20 lines
509 B
HTML
20 lines
509 B
HTML
<html>
|
|
<head>
|
|
<title>Geolocation Test Page</title>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<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>
|