| Index: third_party/WebKit/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html b/third_party/WebKit/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
|
| deleted file mode 100644
|
| index 394a97c287e9d99ca27779c3062c759d619dc9de..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
|
| +++ /dev/null
|
| @@ -1,46 +0,0 @@
|
| -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<script src="../../../resources/mojo-helpers.js"></script>
|
| -<script src="resources/geolocation-mock.js"></script>
|
| -</head>
|
| -<body>
|
| -<script>
|
| -description("Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots.");
|
| -
|
| -var error;
|
| -
|
| -geolocationServiceMock.then(mock => {
|
| -
|
| - // Configure the mock Geolocation service to report a position to cause permission
|
| - // to be requested, then deny it.
|
| - mock.setGeolocationPermission(false);
|
| - mock.setGeolocationPosition(51.478, -0.166, 100.0);
|
| -
|
| - 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.
|
| - mock.setGeolocationPosition(55.478, -0.166, 100);
|
| - window.setTimeout(finishJSTest, 0);
|
| - });
|
| -});
|
| -
|
| -window.jsTestIsAsync = true;
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|