aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/support.js
diff options
context:
space:
mode:
authortimmywil <timmywillisn@gmail.com>2011-10-31 18:24:34 -0400
committertimmywil <timmywillisn@gmail.com>2011-10-31 18:24:34 -0400
commit006fde228da59ae71c11a67ef65dbfc09e788773 (patch)
tree12c68aa20a4e3bee87f2e93f21a3a77cf8aaf900 /test/unit/support.js
parent0752687612d190f608e64181148ced1a4adfa5d6 (diff)
downloadjquery-006fde228da59ae71c11a67ef65dbfc09e788773.tar.gz
jquery-006fde228da59ae71c11a67ef65dbfc09e788773.zip
Pass iframe support tests at doc ready. Fixes support fail in FF7
Diffstat (limited to 'test/unit/support.js')
-rw-r--r--test/unit/support.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index 50a40e4a0..4917a5478 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -33,12 +33,14 @@ supportIFrameTest( "proper boxModel in compatMode CSS1Compat (IE6 and IE7)", "bo
supportIFrameTest( "body background is not lost if set prior to loading jQuery (#9238)", "bodyBackground", function( color, support ) {
expect( 2 );
- var okValue = {
+ var i,
+ passed = true,
+ okValue = {
"#000000": true,
"rgb(0, 0, 0)": true
- };
+ };
ok( okValue[ color ], "color was not reset (" + color + ")" );
- var i, passed = true;
+
for ( i in jQuery.support ) {
if ( jQuery.support[ i ] !== support[ i ] ) {
passed = false;