if ( jQuery.css ) { module("css", { teardown: moduleTeardown }); test("css(String|Hash)", function() { expect( 43 ); equal( jQuery("#qunit-fixture").css("display"), "block", "Check for css property \"display\"" ); var $child, div, div2, width, height, child, prctval, checkval, old; $child = jQuery("#nothiddendivchild").css({ "width": "20%", "height": "20%" }); notEqual( $child.css("width"), "20px", "Retrieving a width percentage on the child of a hidden div returns percentage" ); notEqual( $child.css("height"), "20px", "Retrieving a height percentage on the child of a hidden div returns percentage" ); div = jQuery( "
" ); // These should be "auto" (or some better value) // temporarily provide "0px" for backwards compat equal( div.css("width"), "0px", "Width on disconnected node." ); equal( div.css("height"), "0px", "Height on disconnected node." ); div.css({ "width": 4, "height": 4 }); equal( div.css("width"), "4px", "Width on disconnected node." ); equal( div.css("height"), "4px", "Height on disconnected node." ); div2 = jQuery( " ").appendTo("body"); equal( div2.find("input").css("height"), "20px", "Height on hidden input." ); equal( div2.find("textarea").css("height"), "20px", "Height on hidden textarea." ); equal( div2.find("div").css("height"), "20px", "Height on hidden textarea." ); div2.remove(); // handle negative numbers by setting to zero #11604 jQuery("#nothiddendiv").css( {"width": 1, "height": 1} ); width = parseFloat(jQuery("#nothiddendiv").css("width")); height = parseFloat(jQuery("#nothiddendiv").css("height")); jQuery("#nothiddendiv").css({ "overflow":"hidden", "width": -1, "height": -1 }); equal( parseFloat(jQuery("#nothiddendiv").css("width")), 0, "Test negative width set to 0"); equal( parseFloat(jQuery("#nothiddendiv").css("height")), 0, "Test negative height set to 0"); equal( jQuery("").css("display"), "none", "Styles on disconnected nodes"); jQuery("#floatTest").css({"float": "right"}); equal( jQuery("#floatTest").css("float"), "right", "Modified CSS float using \"float\": Assert float is right"); jQuery("#floatTest").css({"font-size": "30px"}); equal( jQuery("#floatTest").css("font-size"), "30px", "Modified CSS font-size: Assert font-size is 30px"); jQuery.each("0,0.25,0.5,0.75,1".split(","), function(i, n) { jQuery("#foo").css({"opacity": n}); equal( jQuery("#foo").css("opacity"), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" ); jQuery("#foo").css({"opacity": parseFloat(n)}); equal( jQuery("#foo").css("opacity"), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" ); }); jQuery("#foo").css({"opacity": ""}); equal( jQuery("#foo").css("opacity"), "1", "Assert opacity is 1 when set to an empty String" ); equal( jQuery("#empty").css("opacity"), "0", "Assert opacity is accessible via filter property set in stylesheet in IE" ); jQuery("#empty").css({ "opacity": "1" }); equal( jQuery("#empty").css("opacity"), "1", "Assert opacity is taken from style attribute when set vs stylesheet in IE with filters" ); jQuery.support.opacity ? ok(true, "Requires the same number of tests"): ok( ~jQuery("#empty")[0].currentStyle.filter.indexOf("gradient"), "Assert setting opacity doesn't overwrite other filters of the stylesheet in IE" ); div = jQuery("#nothiddendiv"); child = jQuery("#nothiddendivchild"); equal( parseInt(div.css("fontSize"), 10), 16, "Verify fontSize px set." ); equal( parseInt(div.css("font-size"), 10), 16, "Verify fontSize px set." ); equal( parseInt(child.css("fontSize"), 10), 16, "Verify fontSize px set." ); equal( parseInt(child.css("font-size"), 10), 16, "Verify fontSize px set." ); child.css("height", "100%"); equal( child[0].style.height, "100%", "Make sure the height is being set correctly." ); child.attr("class", "em"); equal( parseInt(child.css("fontSize"), 10), 32, "Verify fontSize em set." ); // Have to verify this as the result depends upon the browser's CSS // support for font-size percentages child.attr("class", "prct"); prctval = parseInt(child.css("fontSize"), 10); checkval = 0; if ( prctval === 16 || prctval === 24 ) { checkval = prctval; } equal( prctval, checkval, "Verify fontSize % set." ); equal( typeof child.css("width"), "string", "Make sure that a string width is returned from css('width')." ); old = child[0].style.height; // Test NaN child.css("height", parseFloat("zoo")); equal( child[0].style.height, old, "Make sure height isn't changed on NaN." ); // Test null child.css("height", null); equal( child[0].style.height, old, "Make sure height isn't changed on null." ); old = child[0].style.fontSize; // Test NaN child.css("font-size", parseFloat("zoo")); equal( child[0].style.fontSize, old, "Make sure font-size isn't changed on NaN." ); // Test null child.css("font-size", null); equal( child[0].style.fontSize, old, "Make sure font-size isn't changed on null." ); strictEqual( child.css( "x-fake" ), undefined, "Make sure undefined is returned from css(nonexistent)." ); div = jQuery( "" ).css({ position: "absolute", "z-index": 1000 }).appendTo( "#qunit-fixture" ); strictEqual( div.css( "z-index" ), "1000", "Make sure that a string z-index is returned from css('z-index') (#14432)." ); }); test( "css(String) computed values", 3, function() { var div = jQuery( "" ).addClass( "get-computed-value" ), fixture = document.getElementById( "qunit-fixture" ); div.appendTo( fixture ); strictEqual( div.css( "padding-left" ), "500px", "should get computed value for padding-left property" ); strictEqual( div.css( "width" ), "200px", "should get computed value for width property" ); strictEqual( div.css( "font-size" ), "32px", "should get computed value for font-size property" ); }); test( "css() explicit and relative values", 29, function() { var $elem = jQuery("#nothiddendiv"); $elem.css({ "width": 1, "height": 1, "paddingLeft": "1px", "opacity": 1 }); equal( $elem.css("width"), "1px", "Initial css set or width/height works (hash)" ); equal( $elem.css("paddingLeft"), "1px", "Initial css set of paddingLeft works (hash)" ); equal( $elem.css("opacity"), "1", "Initial css set of opacity works (hash)" ); $elem.css({ width: "+=9" }); equal( $elem.css("width"), "10px", "'+=9' on width (hash)" ); $elem.css({ "width": "-=9" }); equal( $elem.css("width"), "1px", "'-=9' on width (hash)" ); $elem.css({ "width": "+=9px" }); equal( $elem.css("width"), "10px", "'+=9px' on width (hash)" ); $elem.css({ "width": "-=9px" }); equal( $elem.css("width"), "1px", "'-=9px' on width (hash)" ); $elem.css( "width", "+=9" ); equal( $elem.css("width"), "10px", "'+=9' on width (params)" ); $elem.css( "width", "-=9" ) ; equal( $elem.css("width"), "1px", "'-=9' on width (params)" ); $elem.css( "width", "+=9px" ); equal( $elem.css("width"), "10px", "'+=9px' on width (params)" ); $elem.css( "width", "-=9px" ); equal( $elem.css("width"), "1px", "'-=9px' on width (params)" ); $elem.css( "width", "-=-9px" ); equal( $elem.css("width"), "10px", "'-=-9px' on width (params)" ); $elem.css( "width", "+=-9px" ); equal( $elem.css("width"), "1px", "'+=-9px' on width (params)" ); $elem.css({ "paddingLeft": "+=4" }); equal( $elem.css("paddingLeft"), "5px", "'+=4' on paddingLeft (hash)" ); $elem.css({ "paddingLeft": "-=4" }); equal( $elem.css("paddingLeft"), "1px", "'-=4' on paddingLeft (hash)" ); $elem.css({ "paddingLeft": "+=4px" }); equal( $elem.css("paddingLeft"), "5px", "'+=4px' on paddingLeft (hash)" ); $elem.css({ "paddingLeft": "-=4px" }); equal( $elem.css("paddingLeft"), "1px", "'-=4px' on paddingLeft (hash)" ); $elem.css({ "padding-left": "+=4" }); equal( $elem.css("paddingLeft"), "5px", "'+=4' on padding-left (hash)" ); $elem.css({ "padding-left": "-=4" }); equal( $elem.css("paddingLeft"), "1px", "'-=4' on padding-left (hash)" ); $elem.css({ "padding-left": "+=4px" }); equal( $elem.css("paddingLeft"), "5px", "'+=4px' on padding-left (hash)" ); $elem.css({ "padding-left": "-=4px" }); equal( $elem.css("paddingLeft"), "1px", "'-=4px' on padding-left (hash)" ); $elem.css( "paddingLeft", "+=4" ); equal( $elem.css("paddingLeft"), "5px", "'+=4' on paddingLeft (params)" ); $elem.css( "paddingLeft", "-=4" ); equal( $elem.css("paddingLeft"), "1px", "'-=4' on paddingLeft (params)" ); $elem.css( "padding-left", "+=4px" ); equal( $elem.css("paddingLeft"), "5px", "'+=4px' on padding-left (params)" ); $elem.css( "padding-left", "-=4px" ); equal( $elem.css("paddingLeft"), "1px", "'-=4px' on padding-left (params)" ); $elem.css({ "opacity": "-=0.5" }); equal( $elem.css("opacity"), "0.5", "'-=0.5' on opacity (hash)" ); $elem.css({ "opacity": "+=0.5" }); equal( $elem.css("opacity"), "1", "'+=0.5' on opacity (hash)" ); $elem.css( "opacity", "-=0.5" ); equal( $elem.css("opacity"), "0.5", "'-=0.5' on opacity (params)" ); $elem.css( "opacity", "+=0.5" ); equal( $elem.css("opacity"), "1", "'+=0.5' on opacity (params)" ); }); test( "css() non-px relative values (gh-1711)", 17, function() { var cssCurrent, units = {}, $child = jQuery( "#nothiddendivchild" ), add = function( prop, val, unit ) { var difference, adjustment = ( val < 0 ? "-=" : "+=" ) + Math.abs( val ) + unit, message = prop + ": " + adjustment, cssOld = cssCurrent, expected = cssOld + val * units[ prop ][ unit ]; // Apply change $child.css( prop, adjustment ); cssCurrent = parseFloat( $child.css( prop ) ); // Require a difference of no more than one pixel difference = Math.abs( cssCurrent - expected ); if ( difference <= 1 ) { ok( true, message ); // ...or fail with actual and expected values } else { ok( false, message + " (actual " + cssCurrent + ", expected " + expected + ")" ); } }, getUnits = function( prop ) { units[ prop ] = { "px": 1, "em": parseFloat( $child.css( prop, "100em" ).css( prop ) ) / 100, "pt": parseFloat( $child.css( prop, "100pt" ).css( prop ) ) / 100, "pc": parseFloat( $child.css( prop, "100pc" ).css( prop ) ) / 100, "cm": parseFloat( $child.css( prop, "100cm" ).css( prop ) ) / 100, "mm": parseFloat( $child.css( prop, "100mm" ).css( prop ) ) / 100, "%" : parseFloat( $child.css( prop, "100%" ).css( prop ) ) / 100 }; }; jQuery( "#nothiddendiv" ).css({ height: 1, padding: 0, width: 400 }); $child.css({ height: 1, padding: 0 }); getUnits( "width" ); cssCurrent = parseFloat( $child.css( "width", "50%" ).css( "width" ) ); add( "width", 25, "%" ); add( "width", -50, "%" ); add( "width", 10, "em" ); add( "width", 10, "pt" ); add( "width", -2.3, "pt" ); add( "width", 5, "pc" ); add( "width", -5, "em" ); add( "width", +2, "cm" ); add( "width", -15, "mm" ); add( "width", 21, "px" ); getUnits( "lineHeight" ); cssCurrent = parseFloat( $child.css( "lineHeight", "1em" ).css( "lineHeight" ) ); add( "lineHeight", 2, "em" ); add( "lineHeight", -10, "px" ); add( "lineHeight", 20, "pt" ); add( "lineHeight", 30, "pc" ); add( "lineHeight", 1, "cm" ); add( "lineHeight", -20, "mm" ); add( "lineHeight", 50, "%" ); }); test("css(String, Object)", function() { expect( 19 ); var j, div, display, ret, success; jQuery("#floatTest").css("float", "left"); equal( jQuery("#floatTest").css("float"), "left", "Modified CSS float using \"float\": Assert float is left"); jQuery("#floatTest").css("font-size", "20px"); equal( jQuery("#floatTest").css("font-size"), "20px", "Modified CSS font-size: Assert font-size is 20px"); jQuery.each("0,0.25,0.5,0.75,1".split(","), function(i, n) { jQuery("#foo").css("opacity", n); equal( jQuery("#foo").css("opacity"), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" ); jQuery("#foo").css("opacity", parseFloat(n)); equal( jQuery("#foo").css("opacity"), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" ); }); jQuery("#foo").css("opacity", ""); equal( jQuery("#foo").css("opacity"), "1", "Assert opacity is 1 when set to an empty String" ); // using contents will get comments regular, text, and comment nodes j = jQuery("#nonnodes").contents(); j.css("overflow", "visible"); equal( j.css("overflow"), "visible", "Check node,textnode,comment css works" ); equal( jQuery("#t2037 .hidden").css("display"), "none", "Make sure browser thinks it is hidden" ); div = jQuery("#nothiddendiv"); display = div.css("display"); ret = div.css("display", undefined); equal( ret, div, "Make sure setting undefined returns the original set." ); equal( div.css("display"), display, "Make sure that the display wasn't changed." ); success = true; try { jQuery( "#foo" ).css( "backgroundColor", "rgba(0, 0, 0, 0.1)" ); } catch (e) { success = false; } ok( success, "Setting RGBA values does not throw Error (#5509)" ); jQuery( "#foo" ).css( "font", "7px/21px sans-serif" ); strictEqual( jQuery( "#foo" ).css( "line-height" ), "21px", "Set font shorthand property (#14759)" ); }); test( "css(String, Object) with negative values", function() { expect( 4 ); jQuery( "#nothiddendiv" ).css( "margin-top", "-10px" ); jQuery( "#nothiddendiv" ).css( "margin-left", "-10px" ); equal( jQuery( "#nothiddendiv" ).css( "margin-top" ), "-10px", "Ensure negative top margins work." ); equal( jQuery( "#nothiddendiv" ).css( "margin-left" ), "-10px", "Ensure negative left margins work." ); jQuery( "#nothiddendiv" ).css( "position", "absolute" ); jQuery( "#nothiddendiv" ).css( "top", "-20px" ); jQuery( "#nothiddendiv" ).css( "left", "-20px" ); equal( jQuery( "#nothiddendiv" ).css( "top" ), "-20px", "Ensure negative top values work." ); equal( jQuery( "#nothiddendiv" ).css( "left" ), "-20px", "Ensure negative left values work." ); }); test( "css(Array)", function() { expect( 2 ); var expectedMany = { "overflow": "visible", "width": "16px" }, expectedSingle = { "width": "16px" }, elem = jQuery("").appendTo("#qunit-fixture"); deepEqual( elem.css( expectedMany ).css([ "overflow", "width" ]), expectedMany, "Getting multiple element array" ); deepEqual( elem.css( expectedSingle ).css([ "width" ]), expectedSingle, "Getting single element array" ); }); if ( !jQuery.support.opacity ) { test("css(String, Object) for MSIE", function() { expect( 5 ); // for #1438, IE throws JS error when filter exists but doesn't have opacity in it jQuery("#foo").css("filter", "progid:DXImageTransform.Microsoft.Chroma(color='red');"); equal( jQuery("#foo").css("opacity"), "1", "Assert opacity is 1 when a different filter is set in IE, #1438" ); var filterVal = "progid:DXImageTransform.Microsoft.Alpha(opacity=30) progid:DXImageTransform.Microsoft.Blur(pixelradius=5)", filterVal2 = "progid:DXImageTransform.Microsoft.alpha(opacity=100) progid:DXImageTransform.Microsoft.Blur(pixelradius=5)", filterVal3 = "progid:DXImageTransform.Microsoft.Blur(pixelradius=5)"; jQuery("#foo").css("filter", filterVal); equal( jQuery("#foo").css("filter"), filterVal, "css('filter', val) works" ); jQuery("#foo").css("opacity", 1); equal( jQuery("#foo").css("filter"), filterVal2, "Setting opacity in IE doesn't duplicate opacity filter" ); equal( jQuery("#foo").css("opacity"), 1, "Setting opacity in IE with other filters works" ); jQuery("#foo").css("filter", filterVal3).css("opacity", 1); ok( jQuery("#foo").css("filter").indexOf(filterVal3) !== -1, "Setting opacity in IE doesn't clobber other filters" ); }); test( "Setting opacity to 1 properly removes filter: style (#6652)", function() { var rfilter = /filter:[^;]*/i, test = jQuery( "#t6652" ).css( "opacity", 1 ), test2 = test.find( "div" ).css( "opacity", 1 ); function hasFilter( elem ) { return !!rfilter.exec( elem[0].style.cssText ); } expect( 2 ); ok( !hasFilter( test ), "Removed filter attribute on element without filter in stylesheet" ); ok( hasFilter( test2 ), "Filter attribute remains on element that had filter in stylesheet" ); }); } test("css(String, Function)", function() { expect(3); var index, sizes = ["10px", "20px", "30px"]; jQuery("