Used the patch from Alexander as the basis for a rewrite of the IE change event logic...
[jquery.git] / test / unit / attributes.js
index 6b18f99..a837428 100644 (file)
@@ -4,9 +4,9 @@ var bareObj = function(value) { return value; };
 var functionReturningObj = function(value) { return (function() { return value; }); };
 
 test("attr(String)", function() {
-       expect(28);
-       
-       // This one sometimes fails randomally ?!
+       expect(27);
+
+       // This one sometimes fails randomly ?!
        equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' );
        
        equals( jQuery('#text1').attr('value', "Test2").attr('defaultValue'), "Test", 'Check for defaultValue attribute' );
@@ -21,7 +21,8 @@ test("attr(String)", function() {
        equals( jQuery('#name').attr('name'), "name", 'Check for name attribute' );
        equals( jQuery('#text1').attr('name'), "action", 'Check for name attribute' );
        ok( jQuery('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
-       ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' );
+       // Temporarily disabled. See: #4299
+       // ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' );
        equals( jQuery('#text1').attr('maxlength'), '30', 'Check for maxlength attribute' );
        equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' );
        equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' );
@@ -70,7 +71,7 @@ if ( !isLocal ) {
 
 test("attr(String, Function)", function() {
        expect(2);
-       equals( jQuery('#text1').attr('value', function() { return this.id })[0].value, "text1", "Set value from id" );
+       equals( jQuery('#text1').attr('value', function() { return this.id ;})[0].value, "text1", "Set value from id" );
        equals( jQuery('#text1').attr('title', function(i) { return i }).attr('title'), "0", "Set value with an index");
 });
 
@@ -184,42 +185,30 @@ test("attr(String, Object)", function() {
 });
 
 test("attr(jquery_method)", function(){
-       expect(10);
+       expect(7);
        
        var $elem = jQuery("<div />"),
                elem = $elem[0];
        
        // one at a time        
-       $elem.attr('html', 'foo');
+       $elem.attr({'html': 'foo'}, true);
        equals( elem.innerHTML, 'foo', 'attr(html)');
        
-       $elem.attr('text', 'bar');
+       $elem.attr({'text': 'bar'}, true);
        equals( elem.innerHTML, 'bar', 'attr(text)');
        
-       $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'});
+       $elem.attr({'css': {color:'red'}}, true);
        ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)');
        
-       $elem.attr('height', 10);
+       $elem.attr({'height': 10}, true);
        equals( elem.style.height, '10px', 'attr(height)');
        
-       $elem.attr('each', function(){ 
-               return function(){
-                       ok(true, 'attr(each)');
-               };
-       });
-       
        // Multiple attributes
        
        $elem.attr({
                width:10,
                css:{ paddingLeft:1, paddingRight:1 }
-       });
+       }, true);
        
        equals( elem.style.width, '10px', 'attr({...})');
        equals( elem.style.paddingLeft, '1px', 'attr({...})');
@@ -311,7 +300,7 @@ var testAddClass = function(valueObj) {
        var j = jQuery("#nonnodes").contents();
        j.addClass( valueObj("asdf") );
        ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" );
-}
+};
 
 test("addClass(String)", function() {
        testAddClass(bareObj);
@@ -436,23 +425,37 @@ test("removeAttr(Function)", function() {
 });
 
 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" );
 });