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

Unified Diff: android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html

Issue 1785283005: [WebView] Reorganize all of the WebView Shell apks into their own dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html
diff --git a/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html b/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html
deleted file mode 100644
index d947758e4f6a41942dd2873e0f2a9df2db18f526..0000000000000000000000000000000000000000
--- a/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
- <script src="../../resources/js-test.js"></script>
- <body>
- <script type="text/javascript">
- description("Test Geolocation API permission callbacks in WebView");
- window.jsTestIsAsync = true;
-
- function gotPosition() {
- testFailed("geolocation should have been denied");
- finishJSTest();
- }
-
- function onError(err) {
- debug("onError: code=" + err.code + ", message=" + err.message);
- finishJSTest();
- }
-
- if (navigator.geolocation) {
- navigator.geolocation.getCurrentPosition(gotPosition, onError);
- } else {
- debug('geolocation not supported');
- finishJSTest();
- }
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698