diff options
author | John Resig <jeresig@gmail.com> | 2010-08-26 15:36:44 -0400 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-08-26 15:36:44 -0400 |
commit | 9ce1d09a0a002eb147411166dee800335a60f4e4 (patch) | |
tree | 4a8607d63b8144c9bdd5a68800a60b4920ac0451 | |
parent | 1e9d6e1255f94a4643770bb498e875d4016c0781 (diff) | |
download | jquery-9ce1d09a0a002eb147411166dee800335a60f4e4.tar.gz jquery-9ce1d09a0a002eb147411166dee800335a60f4e4.zip |
Blackberry 4.6 doesn't maintain comment nodes in the DOM, ignore them in our test cases.
-rw-r--r-- | test/unit/manipulation.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 4dd1df400..87af324d2 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -22,7 +22,9 @@ var testText = function(valueObj) { j.text(valueObj("hi!")); equals( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" ); equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" ); - equals( j[2].nodeType, 8, "Check node,textnode,comment with text()" ); + + // Blackberry 4.6 doesn't maintain comments in the DOM + equals( jQuery("#nonnodes")[0].childNodes.length < 3 ? 8 : j[2].nodeType, 8, "Check node,textnode,comment with text()" ); } test("text(String)", function() { @@ -72,7 +74,9 @@ var testWrap = function(val) { // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); j.wrap(val( "<i></i>" )); - equals( jQuery("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" ); + + // Blackberry 4.6 doesn't maintain comments in the DOM + equals( jQuery("#nonnodes > i").length, jQuery("#nonnodes")[0].childNodes.length, "Check node,textnode,comment wraps ok" ); equals( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" ); // Try wrapping a disconnected node |