| Index: third_party/WebKit/LayoutTests/fast/dom/Geolocation/error-service-connection-error.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/error-service-connection-error.html b/third_party/WebKit/LayoutTests/fast/dom/Geolocation/error-service-connection-error.html
|
| deleted file mode 100644
|
| index 7c242b68691633d666a60d49b72d44c8c6017ddf..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/error-service-connection-error.html
|
| +++ /dev/null
|
| @@ -1,32 +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 Geolocation when the geolocation service connection fails.");
|
| -
|
| -var error;
|
| -
|
| -geolocationServiceMock.then(mock => {
|
| - mock.setGeolocationPermission(true);
|
| - mock.rejectGeolocationConnections();
|
| -
|
| - navigator.geolocation.getCurrentPosition(function(p) {
|
| - testFailed('Success callback invoked unexpectedly');
|
| - finishJSTest();
|
| - }, function(e) {
|
| - error = e;
|
| - shouldBe('error.code', 'error.POSITION_UNAVAILABLE');
|
| - shouldBe('error.message', '"Failed to start Geolocation service"');
|
| - finishJSTest();
|
| - });
|
| -});
|
| -
|
| -window.jsTestIsAsync = true;
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|