| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <script> |
| description("Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots."); |
| |
| // Configure the mock Geolocation service to report a position to cause permission |
| // to be requested, then deny it. |
| if (window.testRunner) { |
| testRunner.setGeolocationPermission(false); |
| testRunner.setMockGeolocationPosition(51.478, -0.166, 100.0); |
| } else |
| debug('This test can not be run without the testRunner'); |
| |
| var error; |
| var errorCallbackInvoked = false; |
| navigator.geolocation.watchPosition(function(p) { |
| testFailed('Success callback invoked unexpectedly'); |
| finishJSTest(); |
| }, function(e) { |
| if (errorCallbackInvoked) { |
| testFailed('Error callback invoked unexpectedly : ' + error.message); |
| finishJSTest(); |
| } |
| errorCallbackInvoked = true; |
| |
| error = e; |
| shouldBe('error.code', 'error.PERMISSION_DENIED'); |
| shouldBe('error.message', '"User denied Geolocation"'); |
| |
| // Update the mock Geolocation service to report a new position, then |
| // yield to allow a chance for the success callback to be invoked. |
| if (window.testRunner) |
| testRunner.setMockGeolocationPosition(55.478, -0.166, 100); |
| window.setTimeout(finishJSTest, 0); |
| }); |
| |
| |
| window.jsTestIsAsync = true; |
| </script> |
| <script src="../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |