forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtimeout-over-max-of-unsigned.https.html
40 lines (35 loc) · 1.15 KB
/
timeout-over-max-of-unsigned.https.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!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 value is over maximum of unsigned, the success callback is called as expected.");
const mockLatitude = 51.478;
const mockLongitude = -0.166;
const mockAccuracy = 100.0;
let position;
const mock = new GeolocationMock();
mock.setGeolocationPermission(true);
mock.setGeolocationPosition(mockLatitude,
mockLongitude,
mockAccuracy);
navigator.geolocation.getCurrentPosition(function(p) {
position = p;
assert_equals(position.coords.latitude, mockLatitude);
assert_equals(position.coords.longitude, mockLongitude);
assert_equals(position.coords.accuracy, mockAccuracy);
finishJSTest();
}, function(e) {
testFailed('Error callback invoked unexpectedly');
finishJSTest();
}, {
timeout: 4294967296
});
</script>
</body>
</html>