13 lines
276 B
HTML
13 lines
276 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() {});
|
|
</script>
|
|
</body>
|
|
</html>
|