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

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

Issue 2829023002: Fix cancelling permission requests on Android when the PermissionRequestManager is enabled (Closed)
Patch Set: comment Created 3 years, 7 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <iframe id=iframe srcdoc="
4 <script>
5 navigator.geolocation.getCurrentPosition(function() { });
6 </script>
7 "></iframe>
8
9 <script>
10 function navigateIFrame() {
11 iframe.contentWindow.location = "about:blank";
12 }
13
14 function requestGeolocation() {
15 navigator.geolocation.getCurrentPosition(function() { });
16 }
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698