| Index: content/test/data/android/permission_frame_test.html
|
| diff --git a/content/test/data/android/permission_frame_test.html b/content/test/data/android/permission_frame_test.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..883b522a7cc4cde2bddd17740e755b211a14ca51
|
| --- /dev/null
|
| +++ b/content/test/data/android/permission_frame_test.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<iframe id=iframe srcdoc="
|
| +<script>
|
| +navigator.geolocation.getCurrentPosition(function() { });
|
| +</script>
|
| +"></iframe>
|
| +
|
| +<script>
|
| +function navigateIFrame() {
|
| + iframe.contentWindow.location = "about:blank";
|
| +}
|
| +
|
| +function requestGeolocation() {
|
| + navigator.geolocation.getCurrentPosition(function() { });
|
| +}
|
| +</script>
|
|
|