Enforce that hasClass and removeClass work even with tabs and endlines in class attri...
[jquery.git] / test / unit / attributes.js
index a95b3f9..9f0da1f 100644 (file)
@@ -81,8 +81,8 @@ test("attr(Hash)", function() {
                if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
        });
        ok( pass, "Set Multiple Attributes" );
-       equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" );
-       equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2");
+                        equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" );
+                        equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2");
 
 });
 
@@ -184,7 +184,7 @@ test("attr(String, Object)", function() {
 });
 
 test("attr(jquery_method)", function(){
-       expect(10);
+       expect(8);
        
        var $elem = jQuery("<div />"),
                elem = $elem[0];
@@ -199,21 +199,12 @@ test("attr(jquery_method)", function(){
        $elem.attr('addClass', 'css');
        equals( elem.className, 'css', 'attr(addClass)');
        
-       $elem.attr('removeClass', 'css');
-       equals( jQuery.trim(elem.className), '', 'attr(removeClass)');
-       
        $elem.attr('css', {color:'red'});
        ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)');
        
        $elem.attr('height', 10);
        equals( elem.style.height, '10px', 'attr(height)');
        
-       $elem.attr('each', function(){ 
-               return function(){
-                       ok(true, 'attr(each)');
-               };
-       });
-       
        // Multiple attributes
        
        $elem.attr({
@@ -314,11 +305,11 @@ var testAddClass = function(valueObj) {
 }
 
 test("addClass(String)", function() {
-  testAddClass(bareObj);
+       testAddClass(bareObj);
 });
 
 test("addClass(Function)", function() {
-  testAddClass(functionReturningObj);
+       testAddClass(functionReturningObj);
 });
 
 var testRemoveClass = function(valueObj) {
@@ -355,11 +346,11 @@ var testRemoveClass = function(valueObj) {
 };
 
 test("removeClass(String) - simple", function() {
-  testRemoveClass(bareObj);
+       testRemoveClass(bareObj);
 });
 
 test("removeClass(Function) - simple", function() {
-  testRemoveClass(functionReturningObj);
+       testRemoveClass(functionReturningObj);
 });
 
 var testToggleClass = function(valueObj) {
@@ -415,11 +406,11 @@ var testToggleClass = function(valueObj) {
 };
 
 test("toggleClass(String|boolean|undefined[, boolean])", function() {
-  testToggleClass(bareObj);
+       testToggleClass(bareObj);
 });
 
 test("toggleClass(Function[, boolean])", function() {
-  testToggleClass(functionReturningObj);
+       testToggleClass(functionReturningObj);
 });
 
 var testRemoveAttr = function(valueObj) {
@@ -428,31 +419,45 @@ var testRemoveAttr = function(valueObj) {
 };
 
 test("removeAttr(String)", function() {
-  testRemoveAttr(bareObj);
+       testRemoveAttr(bareObj);
 });
 
 test("removeAttr(Function)", function() {
-  testRemoveAttr(functionReturningObj);
+       testRemoveAttr(functionReturningObj);
 });
 
 test("addClass, removeClass, hasClass", function() {
-       expect(6);
-
+       expect(14);
        var jq = jQuery("<p>Hi</p>"), x = jq[0];
-
        jq.addClass("hi");
        equals( x.className, "hi", "Check single added class" );
-
        jq.addClass("foo bar");
        equals( x.className, "hi foo bar", "Check more added classes" );
-
        jq.removeClass();
        equals( x.className, "", "Remove all classes" );
-
        jq.addClass("hi foo bar");
        jq.removeClass("foo");
        equals( x.className, "hi bar", "Check removal of one class" );
-
        ok( jq.hasClass("hi"), "Check has1" );
        ok( jq.hasClass("bar"), "Check has2" );
+       var jq = jQuery("<p class='class1\nclass2\tcla.ss3\n'></p>");
+       ok( jq.hasClass("class1"), "Check hasClass with carriage return" );
+       ok( jq.is(".class1"), "Check is with carriage return" );
+       ok( jq.hasClass("class2"), "Check hasClass with tab" );
+       ok( jq.is(".class2"), "Check is with tab" );
+       ok( jq.hasClass("cla.ss3"), "Check hasClass with dot" );
+       jq.removeClass("class2");
+       ok( jq.hasClass("class2")==false, "Check the class has been properly removed" );
+       jq.removeClass("cla");
+       ok( jq.hasClass("cla.ss3"), "Check the dotted class has not been removed" );
+       jq.removeClass("cla.ss3");
+       ok( jq.hasClass("cla.ss3")==false, "Check the dotted class has been removed" );
 });