]> source.dussan.org Git - jquery.git/commitdiff
No ticket. Restore some parsing tests in core. (cherry-picked from 650f325d8e5e9092cd...
authorMichał Gołębiowski <m.goleb@gmail.com>
Sat, 7 Sep 2013 00:46:55 +0000 (02:46 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Sun, 10 Nov 2013 20:15:07 +0000 (21:15 +0100)
test/unit/core.js

index 5cfb136a163786f749cf788058ba0f15d9a1c8d4..7bd126148734b98978ce4bd45cb0cb15d03777ec 100644 (file)
@@ -588,7 +588,7 @@ test("isWindow", function() {
 });
 
 test("jQuery('html')", function() {
-       expect( 15 );
+       expect( 18 );
 
        var s, div, j;
 
@@ -623,10 +623,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() {