Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Geolocation / script-tests / callback-to-deleted-context.js
blobf83c867309311ce323108baa3f037477c4b62504
1 description("Tests that when a Geolocation request is made from a remote frame, and that frame's script context goes away before the Geolocation callback is made, the callback is made as usual.");
3 function onFirstIframeLoaded() {
4     iframe.src = 'resources/callback-to-deleted-context-inner2.html';
7 function onSecondIframeLoaded() {
8     window.setTimeout(function() {
9         testFailed('No callbacks invoked');
10         finishJSTest();
11     }, 500);
14 var iframe = document.createElement('iframe');
15 iframe.src = 'resources/callback-to-deleted-context-inner1.html';
16 document.body.appendChild(iframe);
18 window.jsTestIsAsync = true;