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

Side by Side Diff: content/test/data/android/geolocation.html

Issue 878163004: [Android] Convert ContentShellTest.apk to isolate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix bad rebase Created 5 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 unified diff | Download patch
« no previous file with comments | « content/test/data/android/device_files/geolocation.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Geolocation</title> 4 <title>Geolocation</title>
5 <script> 5 <script>
6 var positionCount = 0; 6 var positionCount = 0;
7 function gotPos(position) { 7 function gotPos(position) {
8 positionCount++; 8 positionCount++;
9 } 9 }
10 function initiate_watchPosition() { 10 function initiate_watchPosition() {
11 navigator.geolocation.watchPosition(gotPos, function() { }, { }); 11 navigator.geolocation.watchPosition(gotPos, function() { }, { });
12 } 12 }
13 </script> 13 </script>
14 </head> 14 </head>
15 <body> 15 <body>
16 </body> 16 </body>
17 </html> 17 </html>
OLDNEW
« no previous file with comments | « content/test/data/android/device_files/geolocation.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698