diff options
Diffstat (limited to 'test/data/ajax/unreleasedXHR.html')
-rw-r--r-- | test/data/ajax/unreleasedXHR.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/data/ajax/unreleasedXHR.html b/test/data/ajax/unreleasedXHR.html index 8a41c4967..3eedaabf8 100644 --- a/test/data/ajax/unreleasedXHR.html +++ b/test/data/ajax/unreleasedXHR.html @@ -4,13 +4,14 @@ <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Attempt to block tests because of dangling XHR requests (IE)</title> <script src="../../jquery.js"></script> +<script src="../iframeTest.js"></script> <script type="text/javascript"> window.onunload = function() {}; jQuery(function() { setTimeout(function() { var parent = window.parent; document.write(""); - parent.iframeCallback(); + startIframeTest(); }, 200 ); var number = 50; while( number-- ) { |