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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.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/resources/cached-position-iframe-inner.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html b/third_party/WebKit/LayoutTests/fast/dom/Geolocation/resources/cached-position-iframe-inner.html
deleted file mode 100644
index cd4ee87a489ffc2823b4407c079239c7ed7cf97f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/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