blob: 4262f79fd77ec386613dd9ec7c8b740b34b3cf18 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/testharness-adapter.js"></script>
</head>
<body>
<script type="module">
import {GeolocationMock} from './resources/geolocation-mock.js';
description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");
let error;
const mock = new GeolocationMock();
mock.setGeolocationPermission(true);
mock.setGeolocationTimeoutError(true);
navigator.geolocation.getCurrentPosition(function(p) {
testFailed('Success callback invoked unexpectedly');
finishJSTest();
}, function(e) {
error = e;
assert_equals(error.code, error.TIMEOUT);
assert_equals(error.message, "Timeout expired");
finishJSTest();
}, {
timeout: 0
});
</script>
</body>
</html>