From 1e9d6e1255f94a4643770bb498e875d4016c0781 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 26 Aug 2010 15:26:30 -0400 Subject: [PATCH] Fixed mistake with tweaked iframe manipulation test. --- test/unit/manipulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 97d4ca0..4dd1df4 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -265,7 +265,7 @@ var testAppend = function(valueObj) { var body = jQuery("#iframe")[0].contentWindow.document.body; pass = false; - jQuery( document.body ).append(valueObj( "
test
" )); + jQuery( body ).append(valueObj( "
test
" )); pass = true; } catch(e) {} -- 1.7.10.4