Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Geolocation / resources / callback-to-deleted-context-inner1.html
blob81311680bfeaf1e21dfecffda46f10ac5dfc74a8
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script>
5 function makeGeolocationRequest() {
6 if (!window.testRunner || !window.internals)
7 debug('This test can not run without testRunner or internals');
9 internals.setGeolocationClientMock(document);
10 internals.setGeolocationPermission(document, true);
11 internals.setGeolocationPosition(document, 51.478, -0.166, 100);
13 var parent = window.parent;
15 // Make request from remote frame, this frame will be gone by the time the Geolocation
16 // object attempts to invoke the callback.
17 window.parent.navigator.geolocation.getCurrentPosition(function() {
18 parent.testPassed('Success callback invoked');
19 parent.finishJSTest();
20 }, function() {
21 parent.testFailed('Error callback invoked unexpectedly');
22 parent.finishJSTest();
23 });
25 </script>
26 </head>
27 <body onload="window.parent.onFirstIframeLoaded()", onunload="makeGeolocationRequest()">
28 <p>This frame should be replaced before the test ends</p>
29 </body>
30 </html>