android_webview: explicitly use gcc for target binaries.
[chromium-blink-merge.git] / chrome / test / data / geolocation / invalid_request_url.html
blob2897a8ba049d4ac50e3e9423a9c290fe200d0019
1 <html>
2 <head>
3 <script>
4 function requestGeolocationFromInvalidUrl() {
5 var o = window.open();
6 o.navigator.geolocation;
7 o.close();
8 delete o;
9 return "1";
11 function isAlive() {
12 return "1";
14 </script>
15 </head>
16 <body></body>
17 </html>