summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/Geolocation/resources/maximum-age.js
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/dom/Geolocation/resources/maximum-age.js')
-rw-r--r--LayoutTests/fast/dom/Geolocation/resources/maximum-age.js81
1 files changed, 0 insertions, 81 deletions
diff --git a/LayoutTests/fast/dom/Geolocation/resources/maximum-age.js b/LayoutTests/fast/dom/Geolocation/resources/maximum-age.js
deleted file mode 100644
index f48aa0d..0000000
--- a/LayoutTests/fast/dom/Geolocation/resources/maximum-age.js
+++ /dev/null
@@ -1,81 +0,0 @@
-description("Tests that the PositionOptions.maximumAge parameter is correctly applied.");
-
-var mockLatitude = 51.478;
-var mockLongitude = -0.166;
-var mockAccuracy = 100.0;
-
-var mockCode = 1;
-var mockMessage = 'test';
-
-var position;
-var error;
-
-function checkPosition(p) {
- debug('');
- position = p;
- shouldBe('position.coords.latitude', 'mockLatitude');
- shouldBe('position.coords.longitude', 'mockLongitude');
- shouldBe('position.coords.accuracy', 'mockAccuracy');
-}
-
-function checkError(e) {
- debug('');
- error = e;
- shouldBe('error.code', 'mockCode');
- shouldBe('error.message', 'mockMessage');
-}
-
-window.layoutTestController.setGeolocationPermission(true);
-window.layoutTestController.setMockGeolocationPosition(mockLatitude, mockLongitude, mockAccuracy);
-
-// Initialize the cached Position
-navigator.geolocation.getCurrentPosition(function(p) {
- checkPosition(p);
- testZeroMaximumAge();
-}, function(e) {
- testFailed('Error callback invoked unexpectedly');
- window.layoutTestController.notifyDone();
-});
-
-function testZeroMaximumAge() {
- // Update the position provided by the mock service.
- window.layoutTestController.setMockGeolocationPosition(++mockLatitude, ++mockLongitude, ++mockAccuracy);
- // The default maximumAge is zero, so we expect the updated position from the service.
- navigator.geolocation.getCurrentPosition(function(p) {
- checkPosition(p);
- testNonZeroMaximumAge();
- }, function(e) {
- testFailed('Error callback invoked unexpectedly');
- window.layoutTestController.notifyDone();
- });
-}
-
-function testNonZeroMaximumAge() {
- // Update the mock service to report an error.
- window.layoutTestController.setMockGeolocationError(mockCode, mockMessage);
- // The maximumAge is non-zero, so we expect the cached position, not the error from the service.
- navigator.geolocation.getCurrentPosition(function(p) {
- checkPosition(p);
- testZeroMaximumAgeError();
- }, function(e) {
- testFailed('Error callback invoked unexpectedly');
- window.layoutTestController.notifyDone();
- }, {maximumAge: 1000});
-}
-
-function testZeroMaximumAgeError() {
- // The default maximumAge is zero, so we expect the error from the service.
- navigator.geolocation.getCurrentPosition(function(p) {
- testFailed('Success callback invoked unexpectedly');
- window.layoutTestController.notifyDone();
- }, function(e) {
- checkError(e);
- debug('<br /><span class="pass">TEST COMPLETE</span>');
- window.layoutTestController.notifyDone();
- });
-}
-
-window.layoutTestController.waitUntilDone();
-
-var isAsynchronous = true;
-var successfullyParsed = true;