mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
13 lines
279 B
HTML
13 lines
279 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Geolocation permission test</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<script type="text/javascript">
|
||
|
|
"use strict";
|
||
|
|
navigator.geolocation.getCurrentPosition(function (pos) {});
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|