aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg <markelog@gmail.com>2013-01-07 23:21:42 +0400
committerDave Methvin <dave.methvin@gmail.com>2013-01-08 02:41:18 +0000
commit6d2ae92fe4e8bbbfd90d26ad5c5d51960f91f7b4 (patch)
treeb6e56f75b53ac17a08ae5782f863fcc67fe4d5d5
parentc9bf5c5e905ec8c4d29c61f8ddf04d8a40d8e04e (diff)
downloadjquery-6d2ae92fe4e8bbbfd90d26ad5c5d51960f91f7b4.tar.gz
jquery-6d2ae92fe4e8bbbfd90d26ad5c5d51960f91f7b4.zip
Change test description
-rw-r--r--test/unit/core.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index c0fa065e0..ed638eb1e 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -1244,7 +1244,8 @@ test("jQuery.parseHTML", function() {
equal( html[ 0 ].innerHTML, "test div", "Content should be preserved" );
equal( jQuery.parseHTML("<span><span>").length, 1, "Incorrect html-strings should not break anything" );
- equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11, "parentNode should be documentFragment" );
+ equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11,
+ "parentNode should be documentFragment for wrapMap (variable in manipulation module) elements too" );
});
test("jQuery.parseJSON", function(){