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

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

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/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
index b2e39c31c9831dcf1b9a27d0d0fe51c714580876..394a97c287e9d99ca27779c3062c759d619dc9de 100644
--- 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
@@ -6,6 +6,41 @@
<script src="resources/geolocation-mock.js"></script>
</head>
<body>
-<script src="script-tests/permission-denied-stops-watches.js"></script>
+<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