aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2013-09-07 02:46:55 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2013-11-10 21:05:43 +0100
commit650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf (patch)
treed6ff346b80e2c0edee15b239786672b5dde9ee38
parentd0fadbba9f1dbe2ee009be6586fbdf3cda4eff98 (diff)
downloadjquery-650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf.tar.gz
jquery-650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf.zip
No ticket. Restore some parsing tests in core.
-rw-r--r--test/unit/core.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index d00f0fd76..dd7ed1891 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -585,7 +585,7 @@ test("isWindow", function() {
});
test("jQuery('html')", function() {
- expect( 15 );
+ expect( 18 );
var s, div, j;
@@ -620,10 +620,13 @@ test("jQuery('html')", function() {
ok( jQuery("<div></div>")[0], "Create a div with closing tag." );
ok( jQuery("<table></table>")[0], "Create a table with closing tag." );
- // equal( jQuery("element[attribute='<div></div>']").length, 0, "When html is within brackets, do not recognize as html." );
- // equal( jQuery("element[attribute=<div></div>]").length, 0, "When html is within brackets, do not recognize as html." );
- // equal( jQuery("element:not(<div></div>)").length, 0, "When html is within parens, do not recognize as html." );
- // equal( jQuery("\\<div\\>").length, 0, "Ignore escaped html characters" );
+ equal( jQuery( "element[attribute='<div></div>']" ).length, 0,
+ "When html is within brackets, do not recognize as html." );
+ //equal( jQuery( "element[attribute=<div></div>]" ).length, 0,
+ // "When html is within brackets, do not recognize as html." );
+ equal( jQuery( "element:not(<div></div>)" ).length, 0,
+ "When html is within parens, do not recognize as html." );
+ equal( jQuery( "\\<div\\>" ).length, 0, "Ignore escaped html characters" );
});
test("jQuery('massive html #7990')", function() {