| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <script> |
| description('Tests that a cached position can be obtained in one frame after another frame has received a fresh position.'); |
| |
| if (window.testRunner) { |
| testRunner.setMockGeolocationPosition(51.478, -0.166, 100); |
| testRunner.setGeolocationPermission(true); |
| } |
| |
| window.onmessage = function (messageEvent) { |
| debug(messageEvent.data.message); |
| success = messageEvent.data.success; |
| shouldBeTrue('success'); |
| finishJSTest(); |
| } |
| |
| navigator.geolocation.getCurrentPosition( |
| function() { |
| // Kick off the iframe to request a cached position. The iframe |
| // will post a message back on success / failure. |
| iframe = document.createElement('iframe'); |
| iframe.src = 'resources/cached-position-iframe-inner.html'; |
| document.body.appendChild(iframe); |
| }); |
| |
| window.jsTestIsAsync = true; |
| </script> |
| <script src="../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |