Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-service-not-available.js

Issue 1972733002: Delete geofencing implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark histogram suffix as obsolete Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-service-not-available.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-service-not-available.js b/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-service-not-available.js
deleted file mode 100644
index 754a9fb86d86c49e748d9d7bfd20d67ca1c05032..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/geofencing/resources/worker-service-not-available.js
+++ /dev/null
@@ -1,27 +0,0 @@
-importScripts('../../serviceworker/resources/worker-testharness.js');
-
-promise_test(function(test) {
- return promise_rejects(
- test,
- 'AbortError',
- navigator.geofencing.registerRegion(
- new CircularGeofencingRegion({latitude: 37.421999,
- longitude: -122.084015})),
- 'registerRegion should fail with an AbortError');
- }, 'registerRegion should fail');
-
-promise_test(function(test) {
- return promise_rejects(
- test,
- 'AbortError',
- navigator.geofencing.unregisterRegion(""),
- 'unregisterRegion should fail with an AbortError');
- }, 'unregisterRegion should fail');
-
-promise_test(function(test) {
- return promise_rejects(
- test,
- 'AbortError',
- navigator.geofencing.getRegisteredRegions(),
- 'getRegisteredRegions should fail with an AbortError');
- }, 'getRegisteredRegions should fail');

Powered by Google App Engine
This is Rietveld 408576698