diff options
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r-- | test/unit/manipulation.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index ca84d4bc1..b182a19b0 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -77,8 +77,7 @@ function testText( valueObj ) { equal( jQuery( j[ 0 ] ).text(), "hi!", "Check node,textnode,comment with text()" ); equal( j[ 1 ].nodeValue, " there ", "Check node,textnode,comment with text()" ); - // Blackberry 4.6 doesn't maintain comments in the DOM - equal( jQuery("#nonnodes")[ 0 ].childNodes.length < 3 ? 8 : j[ 2 ].nodeType, 8, "Check node,textnode,comment with text()" ); + equal( j[ 2 ].nodeType, 8, "Check node,textnode,comment with text()" ); // Update multiple elements #11809 expected = "New"; |