Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
44c202a8ebfbe4dd35cd09c939a499d5ea0c151b
/
.
/
Tools
/
TestWebKitAPI
/
Resources
/
geolocationWatchPosition.html
blob: fdc2b500ed8089e3a24524519bea9c834665f7f2 [
file
]
<script>
navigator
.
geolocation
.
watchPosition
(
function
()
{
setTimeout
(()
=>
alert
(
"SUCCESS"
),
0
);
},
function
()
{
setTimeout
(()
=>
alert
(
"FAIL"
),
0
);
},
{
timeout
:
100
});
</script>