]> source.dussan.org Git - jquery.git/commitdiff
Add style attribute support tests to $.attr
authortimmywil <tim.willison@thisismedium.com>
Wed, 30 Mar 2011 01:49:37 +0000 (21:49 -0400)
committertimmywil <tim.willison@thisismedium.com>
Sun, 3 Apr 2011 23:13:41 +0000 (19:13 -0400)
test/unit/attributes.js

index 0260a6c1f3a47dd74f114b6884f8c6e7a514943b..262f3499e081f155ecdb349d27221f6ec68631d7 100644 (file)
@@ -75,7 +75,7 @@ test("prop(String, Object)", function() {
 });
 
 test("attr(String)", function() {
-       expect(26);
+       expect(28);
 
        equals( jQuery('#text1').attr('type'), "text", 'Check for type attribute' );
        equals( jQuery('#radio1').attr('type'), "radio", 'Check for type attribute' );
@@ -127,7 +127,10 @@ test("attr(String)", function() {
 
        ok( jQuery("<div/>").attr("doesntexist") === undefined, "Make sure undefined is returned when no attribute is found." );
        ok( jQuery().attr("doesntexist") === undefined, "Make sure undefined is returned when no element is there." );
-
+       
+       // Check for style support
+       ok( !!~jQuery('#dl').attr('style').indexOf('absolute'), 'Check style attribute getter' );
+       ok( !!~jQuery('#foo').attr('style', 'position:absolute;').attr('style').indexOf('absolute'), 'Check style setter' );
 });
 
 if ( !isLocal ) {