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

Unified Diff: LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html

Issue 256843004: Get the WebGeolocationClient from WebFrameClient instead of WebViewClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix layouttest, fix webkit_unit_tests crash, remove obsolete layout test Created 6 years, 8 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: LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html
diff --git a/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html b/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html
deleted file mode 100644
index cd4ee87a489ffc2823b4407c079239c7ed7cf97f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-<body>
- <script>
- function successCallback(position) {
- var message = {
- 'success': true,
- 'message': 'Received cached position lat: ' + position.coords.latitude + ', long: ' + position.coords.longitude
- };
- parent.postMessage(message, '*');
- }
-
- function errorCallback(error) {
- var message = {
- 'success': false,
- 'message': 'Failed to get position.'
- }
- parent.postMessage(message, '*');
- }
-
- navigator.geolocation.getCurrentPosition(
- successCallback,
- errorCallback,
- { maximumAge:600000, timeout:0 });
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698