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

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

Issue 2671933003: Move Geolocation out from fast/dom. (Closed)
Patch Set: . Created 3 years, 10 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/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>

Powered by Google App Engine
This is Rietveld 408576698