aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/testinit.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-08-19 17:41:43 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-08-20 08:16:07 -0400
commit0f553ed0ca0c50c5f66377e9f2c6314f822e8f25 (patch)
tree0b807f943547744a3c6eaacb6ca1e900082895c0 /test/data/testinit.js
parentf3ea073dc0cc506cbbdd24952953d7e8dda456a4 (diff)
downloadjquery-0f553ed0ca0c50c5f66377e9f2c6314f822e8f25.tar.gz
jquery-0f553ed0ca0c50c5f66377e9f2c6314f822e8f25.zip
Fix #12282. IE has premature .readyState == "interactive". Close gh-901.
Diffstat (limited to 'test/data/testinit.js')
-rw-r--r--test/data/testinit.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js
index 18f9e2845..fbc858665 100644
--- a/test/data/testinit.js
+++ b/test/data/testinit.js
@@ -223,7 +223,7 @@ function url( value ) {
}, 0 );
};
iframe = jQuery( "<div/>" ).append(
- jQuery( "<iframe/>" ).attr( "src", url("./data/" + fileName + ".html") )
+ jQuery( "<iframe/>" ).attr( "src", url( "./data/" + fileName ) )
).appendTo( "body" );
});
}