aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/event/promiseReady.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/event/promiseReady.html')
-rw-r--r--test/data/event/promiseReady.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/data/event/promiseReady.html b/test/data/event/promiseReady.html
index 17b6e7f2c..c6e086245 100644
--- a/test/data/event/promiseReady.html
+++ b/test/data/event/promiseReady.html
@@ -4,10 +4,11 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test case for jQuery ticket #11470</title>
<script src="../../jquery.js"></script>
+<script src="../iframeTest.js"></script>
<script type="text/javascript">
jQuery.when( jQuery.ready ).done(function() {
jQuery("body").append("<div>modifying DOM</div>");
- window.parent.iframeCallback( $("div").text() === "modifying DOM" );
+ startIframeTest( $("div").text() === "modifying DOM" );
});
</script>
</head>