| Index: content/test/data/android/permission_navigation.html
|
| diff --git a/content/test/data/android/permission_navigation.html b/content/test/data/android/permission_navigation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6a73e3aaa57449ad73bc63a94deda1b6f6b7fc84
|
| --- /dev/null
|
| +++ b/content/test/data/android/permission_navigation.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<script>
|
| +function navigate() {
|
| + window.location = "about:blank";
|
| +}
|
| +
|
| +function requestGeolocationPermission() {
|
| + navigator.geolocation.getCurrentPosition(function() { });
|
| +}
|
| +
|
| +function requestNotificationPermission() {
|
| + Notification.requestPermission();
|
| +}
|
| +</script>
|
|
|