summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/Geolocation/resources/timeout-zero.js
blob: 8a930d96c3220d4856b264abbc1945feebdc5602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");

layoutTestController.setMockGeolocationPosition(51.478, -0.166, 100.0);

var error;
navigator.geolocation.getCurrentPosition(function(p) {
    testFailed('Success callback invoked unexpectedly');
    window.layoutTestController.notifyDone();
}, function(e) {
    error = e
    shouldBe('error.code', 'error.TIMEOUT');
    shouldBe('error.message', '"Timeout expired"');
    debug('<br /><span class="pass">TEST COMPLETE</span>');
    window.layoutTestController.notifyDone();
}, {
    timeout: 0
});
window.layoutTestController.waitUntilDone();

var isAsynchronous = true;
var successfullyParsed = true;