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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/permission-denied-stops-watches.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 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/fast/dom/Geolocation/script-tests/permission-denied-stops-watches.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/permission-denied-stops-watches.js b/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/permission-denied-stops-watches.js
deleted file mode 100644
index 778fc83fe7b7810d7ac362dbc760f862ab5f60a6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/permission-denied-stops-watches.js
+++ /dev/null
@@ -1,34 +0,0 @@
-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;

Powered by Google App Engine
This is Rietveld 408576698