| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <script src="../jquery-1.9.1.js"></script> |
| <script>var $j = jQuery.noConflict();</script> |
| <script src="../iframeTest.js"></script> |
| </head> |
| <body> |
| <iframe id="dont_return" src="../mock.php?action=wait&wait=30"></iframe> |
| <script> |
| var timeoutId, $, |
| timeoutFired = false; |
| |
| setTimeout(function () { |
| // Load another jQuery copy using the first one. |
| $j.getScript( "../../../dist/jquery.js", function () { |
| $j( "#dont_return" ).attr( "src", "about:blank" ); |
| |
| // document ready handled by the just-loaded jQuery copy. |
| $(function () { |
| clearTimeout( timeoutId ); |
| if ( !timeoutFired ) { |
| startIframeTest( true ); |
| } |
| }); |
| }); |
| |
| timeoutId = setTimeout(function () { |
| timeoutFired = true; |
| startIframeTest( false ); |
| }, 10000); |
| }); |
| </script> |
| </body> |
| </html> |