From b349731e57608de75b00893261452e376b29df99 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Sat, 7 Sep 2013 02:46:55 +0200 Subject: [PATCH] No ticket. Restore some parsing tests in core. (cherry-picked from 650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf) --- test/unit/core.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/test/unit/core.js b/test/unit/core.js index 5cfb136a1..7bd126148 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -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("
")[0], "Create a div with closing tag." ); ok( jQuery("
")[0], "Create a table with closing tag." ); - // equal( jQuery("element[attribute='
']").length, 0, "When html is within brackets, do not recognize as html." ); - // equal( jQuery("element[attribute=
]").length, 0, "When html is within brackets, do not recognize as html." ); - // equal( jQuery("element:not(
)").length, 0, "When html is within parens, do not recognize as html." ); - // equal( jQuery("\\").length, 0, "Ignore escaped html characters" ); + equal( jQuery( "element[attribute='
']" ).length, 0, + "When html is within brackets, do not recognize as html." ); + //equal( jQuery( "element[attribute=
]" ).length, 0, + // "When html is within brackets, do not recognize as html." ); + equal( jQuery( "element:not(
)" ).length, 0, + "When html is within parens, do not recognize as html." ); + equal( jQuery( "\\" ).length, 0, "Ignore escaped html characters" ); }); test("jQuery('massive html #7990')", function() { -- 2.39.5