From 006fde228da59ae71c11a67ef65dbfc09e788773 Mon Sep 17 00:00:00 2001 From: timmywil Date: Mon, 31 Oct 2011 18:24:34 -0400 Subject: [PATCH] Pass iframe support tests at doc ready. Fixes support fail in FF7 --- test/data/support/bodyBackground.html | 4 +++- test/unit/support.js | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/test/data/support/bodyBackground.html b/test/data/support/bodyBackground.html index 824fe65e4..3d135ab56 100644 --- a/test/data/support/bodyBackground.html +++ b/test/data/support/bodyBackground.html @@ -32,7 +32,9 @@ 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; -- 2.39.5