From b147039acc32884b50b955ebd94eeaa430713786 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 8 Jul 2007 23:52:14 +0000 Subject: Added a number of fixes: Tag name case-sensitivity, text escaping, opacity setting. Tweaked the test suite slightly. --- src/jquery/coreTest.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 602da848c..20aaea857 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -12,7 +12,7 @@ test("Basic requirements", function() { }); test("$()", function() { - expect(3); + expect(2); var main = $("#main"); isSet( $("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" ); @@ -327,7 +327,7 @@ test("text()", function() { }); test("wrap(String|Element)", function() { - expect(7); + expect(6); var defaultText = 'Try them out:' var result = $('#first').wrap('
').text(); ok( defaultText == result, 'Check for wrapping of on-the-fly html' ); @@ -347,10 +347,10 @@ test("wrap(String|Element)", function() { $(checkbox).wrap( '' ); ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); // use a fade in to check state after this event handler has finished - setTimeout(function() { + /*setTimeout(function() { ok( !checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); start(); - }, 100); + }, 100);*/ }).click(); }); -- cgit v1.2.3