diff options
author | John Resig <jeresig@gmail.com> | 2010-08-26 15:26:30 -0400 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-08-26 15:26:30 -0400 |
commit | 1e9d6e1255f94a4643770bb498e875d4016c0781 (patch) | |
tree | e79181d57dded6796855ab616dce819af379af2c /test/unit | |
parent | c5382ad7c118ca54dde630b6c7146f1c3b6afb80 (diff) | |
download | jquery-1e9d6e1255f94a4643770bb498e875d4016c0781.tar.gz jquery-1e9d6e1255f94a4643770bb498e875d4016c0781.zip |
Fixed mistake with tweaked iframe manipulation test.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 97d4ca026..4dd1df400 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( "<div>test</div>" )); + jQuery( body ).append(valueObj( "<div>test</div>" )); pass = true; } catch(e) {} |