if ( jQuery.css ) { QUnit.module( "css", { afterEach: moduleTeardown } ); QUnit.test( "css(String|Hash)", function( assert ) { assert.expect( 42 ); assert.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%" } ); assert.notEqual( $child.css( "width" ), "20px", "Retrieving a width percentage on the child of a hidden div returns percentage" ); assert.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 assert.equal( div.css( "width" ), "0px", "Width on disconnected node." ); assert.equal( div.css( "height" ), "0px", "Height on disconnected node." ); div.css( { "width": 4, "height": 4 } ); assert.equal( div.css( "width" ), "4px", "Width on disconnected node." ); assert.equal( div.css( "height" ), "4px", "Height on disconnected node." ); div2 = jQuery( "
" ).appendTo( "body" ); assert.equal( div2.find( "input" ).css( "height" ), "20px", "Height on hidden input." ); assert.equal( div2.find( "textarea" ).css( "height" ), "20px", "Height on hidden textarea." ); assert.equal( div2.find( "div" ).css( "height" ), "20px", "Height on hidden div." ); 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 } ); assert.equal( parseFloat( jQuery( "#nothiddendiv" ).css( "width" ) ), 0, "Test negative width set to 0" ); assert.equal( parseFloat( jQuery( "#nothiddendiv" ).css( "height" ) ), 0, "Test negative height set to 0" ); assert.equal( jQuery( "
" ).css( "display" ), "none", "Styles on disconnected nodes" ); jQuery( "#floatTest" ).css( { "float": "right" } ); assert.equal( jQuery( "#floatTest" ).css( "float" ), "right", "Modified CSS float using \"float\": Assert float is right" ); jQuery( "#floatTest" ).css( { "font-size": "30px" } ); assert.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 } ); assert.equal( jQuery( "#foo" ).css( "opacity" ), parseFloat( n ), "Assert opacity is " + parseFloat( n ) + " as a String" ); jQuery( "#foo" ).css( { "opacity": parseFloat( n ) } ); assert.equal( jQuery( "#foo" ).css( "opacity" ), parseFloat( n ), "Assert opacity is " + parseFloat( n ) + " as a Number" ); } ); jQuery( "#foo" ).css( { "opacity": "" } ); assert.equal( jQuery( "#foo" ).css( "opacity" ), "1", "Assert opacity is 1 when set to an empty String" ); assert.equal( jQuery( "#empty" ).css( "opacity" ), "0", "Assert opacity is accessible" ); jQuery( "#empty" ).css( { "opacity": "1" } ); assert.equal( jQuery( "#empty" ).css( "opacity" ), "1", "Assert opacity is taken from style attribute when set" ); div = jQuery( "#nothiddendiv" ); child = jQuery( "#nothiddendivchild" ); assert.equal( parseInt( div.css( "fontSize" ), 10 ), 16, "Verify fontSize px set." ); assert.equal( parseInt( div.css( "font-size" ), 10 ), 16, "Verify fontSize px set." ); assert.equal( parseInt( child.css( "fontSize" ), 10 ), 16, "Verify fontSize px set." ); assert.equal( parseInt( child.css( "font-size" ), 10 ), 16, "Verify fontSize px set." ); child.css( "height", "100%" ); assert.equal( child[ 0 ].style.height, "100%", "Make sure the height is being set correctly." ); child.attr( "class", "em" ); assert.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; } assert.equal( prctval, checkval, "Verify fontSize % set." ); assert.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" ) ); assert.equal( child[ 0 ].style.height, old, "Make sure height isn't changed on NaN." ); // Test null child.css( "height", null ); assert.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" ) ); assert.equal( child[ 0 ].style.fontSize, old, "Make sure font-size isn't changed on NaN." ); // Test null child.css( "font-size", null ); assert.equal( child[ 0 ].style.fontSize, old, "Make sure font-size isn't changed on null." ); assert.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" ); assert.strictEqual( div.css( "z-index" ), "1000", "Make sure that a string z-index is returned from css('z-index') (#14432)." ); } ); QUnit.test( "css() explicit and relative values", function( assert ) { assert.expect( 29 ); var $elem = jQuery( "#nothiddendiv" ); $elem.css( { "width": 1, "height": 1, "paddingLeft": "1px", "opacity": 1 } ); assert.equal( $elem.css( "width" ), "1px", "Initial css set or width/height works (hash)" ); assert.equal( $elem.css( "paddingLeft" ), "1px", "Initial css set of paddingLeft works (hash)" ); assert.equal( $elem.css( "opacity" ), "1", "Initial css set of opacity works (hash)" ); $elem.css( { width: "+=9" } ); assert.equal( $elem.css( "width" ), "10px", "'+=9' on width (hash)" ); $elem.css( { "width": "-=9" } ); assert.equal( $elem.css( "width" ), "1px", "'-=9' on width (hash)" ); $elem.css( { "width": "+=9px" } ); assert.equal( $elem.css( "width" ), "10px", "'+=9px' on width (hash)" ); $elem.css( { "width": "-=9px" } ); assert.equal( $elem.css( "width" ), "1px", "'-=9px' on width (hash)" ); $elem.css( "width", "+=9" ); assert.equal( $elem.css( "width" ), "10px", "'+=9' on width (params)" ); $elem.css( "width", "-=9" ); assert.equal( $elem.css( "width" ), "1px", "'-=9' on width (params)" ); $elem.css( "width", "+=9px" ); assert.equal( $elem.css( "width" ), "10px", "'+=9px' on width (params)" ); $elem.css( "width", "-=9px" ); assert.equal( $elem.css( "width" ), "1px", "'-=9px' on width (params)" ); $elem.css( "width", "-=-9px" ); assert.equal( $elem.css( "width" ), "10px", "'-=-9px' on width (params)" ); $elem.css( "width", "+=-9px" ); assert.equal( $elem.css( "width" ), "1px", "'+=-9px' on width (params)" ); $elem.css( { "paddingLeft": "+=4" } ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4' on paddingLeft (hash)" ); $elem.css( { "paddingLeft": "-=4" } ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4' on paddingLeft (hash)" ); $elem.css( { "paddingLeft": "+=4px" } ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4px' on paddingLeft (hash)" ); $elem.css( { "paddingLeft": "-=4px" } ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4px' on paddingLeft (hash)" ); $elem.css( { "padding-left": "+=4" } ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4' on padding-left (hash)" ); $elem.css( { "padding-left": "-=4" } ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4' on padding-left (hash)" ); $elem.css( { "padding-left": "+=4px" } ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4px' on padding-left (hash)" ); $elem.css( { "padding-left": "-=4px" } ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4px' on padding-left (hash)" ); $elem.css( "paddingLeft", "+=4" ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4' on paddingLeft (params)" ); $elem.css( "paddingLeft", "-=4" ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4' on paddingLeft (params)" ); $elem.css( "padding-left", "+=4px" ); assert.equal( $elem.css( "paddingLeft" ), "5px", "'+=4px' on padding-left (params)" ); $elem.css( "padding-left", "-=4px" ); assert.equal( $elem.css( "paddingLeft" ), "1px", "'-=4px' on padding-left (params)" ); $elem.css( { "opacity": "-=0.5" } ); assert.equal( $elem.css( "opacity" ), "0.5", "'-=0.5' on opacity (hash)" ); $elem.css( { "opacity": "+=0.5" } ); assert.equal( $elem.css( "opacity" ), "1", "'+=0.5' on opacity (hash)" ); $elem.css( "opacity", "-=0.5" ); assert.equal( $elem.css( "opacity" ), "0.5", "'-=0.5' on opacity (params)" ); $elem.css( "opacity", "+=0.5" ); assert.equal( $elem.css( "opacity" ), "1", "'+=0.5' on opacity (params)" ); } ); QUnit.test( "css() non-px relative values (gh-1711)", function( assert ) { assert.expect( 17 ); 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 ) ); message += " (actual " + round( cssCurrent, 2 ) + "px, expected " + round( expected, 2 ) + "px)"; // Require a difference of no more than one pixel difference = Math.abs( cssCurrent - expected ); assert.ok( difference <= 1, message ); }, 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, "500%" ).css( prop ) ) / 500 }; }, round = function( num, fractionDigits ) { var base = Math.pow( 10, fractionDigits ); return Math.round( num * base ) / base; }; 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", 50, "%" ); add( "lineHeight", 2, "em" ); add( "lineHeight", -10, "px" ); add( "lineHeight", 20, "pt" ); add( "lineHeight", 30, "pc" ); add( "lineHeight", 1, "cm" ); add( "lineHeight", -44, "mm" ); } ); QUnit.test( "css() mismatched relative values with bounded styles (gh-2144)", function( assert ) { assert.expect( 1 ); var right, $container = jQuery( "
" ) .css( { position: "absolute", width: "400px", fontSize: "4px" } ) .appendTo( "#qunit-fixture" ), $el = jQuery( "
" ) .css( { position: "absolute", left: "50%", right: "50%" } ) .appendTo( $container ); $el.css( "right", "-=25em" ); assert.equal( Math.round( parseFloat( $el.css( "right" ) ) ), 100, "Constraints do not interfere with unit conversion" ); } ); QUnit.test( "css(String, Object)", function( assert ) { assert.expect( 19 ); var j, div, display, ret, success; jQuery( "#floatTest" ).css( "float", "left" ); assert.equal( jQuery( "#floatTest" ).css( "float" ), "left", "Modified CSS float using \"float\": Assert float is left" ); jQuery( "#floatTest" ).css( "font-size", "20px" ); assert.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 ); assert.equal( jQuery( "#foo" ).css( "opacity" ), parseFloat( n ), "Assert opacity is " + parseFloat( n ) + " as a String" ); jQuery( "#foo" ).css( "opacity", parseFloat( n ) ); assert.equal( jQuery( "#foo" ).css( "opacity" ), parseFloat( n ), "Assert opacity is " + parseFloat( n ) + " as a Number" ); } ); jQuery( "#foo" ).css( "opacity", "" ); assert.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" ); assert.equal( j.css( "overflow" ), "visible", "Check node,textnode,comment css works" ); assert.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 ); assert.equal( ret, div, "Make sure setting undefined returns the original set." ); assert.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; } assert.ok( success, "Setting RGBA values does not throw Error (#5509)" ); jQuery( "#foo" ).css( "font", "7px/21px sans-serif" ); assert.strictEqual( jQuery( "#foo" ).css( "line-height" ), "21px", "Set font shorthand property (#14759)" ); } ); QUnit.test( "css(String, Object) with negative values", function( assert ) { assert.expect( 4 ); jQuery( "#nothiddendiv" ).css( "margin-top", "-10px" ); jQuery( "#nothiddendiv" ).css( "margin-left", "-10px" ); assert.equal( jQuery( "#nothiddendiv" ).css( "margin-top" ), "-10px", "Ensure negative top margins work." ); assert.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" ); assert.equal( jQuery( "#nothiddendiv" ).css( "top" ), "-20px", "Ensure negative top values work." ); assert.equal( jQuery( "#nothiddendiv" ).css( "left" ), "-20px", "Ensure negative left values work." ); } ); QUnit.test( "css(Array)", function( assert ) { assert.expect( 2 ); var expectedMany = { "overflow": "visible", "width": "16px" }, expectedSingle = { "width": "16px" }, elem = jQuery( "
" ).appendTo( "#qunit-fixture" ); assert.deepEqual( elem.css( expectedMany ).css( [ "overflow", "width" ] ), expectedMany, "Getting multiple element array" ); assert.deepEqual( elem.css( expectedSingle ).css( [ "width" ] ), expectedSingle, "Getting single element array" ); } ); QUnit.test( "css(String, Function)", function( assert ) { assert.expect( 3 ); var index, sizes = [ "10px", "20px", "30px" ]; jQuery( "
" + "
" + "
" ) .appendTo( "body" ); index = 0; jQuery( "#cssFunctionTest div" ).css( "font-size", function() { var size = sizes[ index ]; index++; return size; } ); index = 0; jQuery( "#cssFunctionTest div" ).each( function() { var computedSize = jQuery( this ).css( "font-size" ), expectedSize = sizes[ index ]; assert.equal( computedSize, expectedSize, "Div #" + index + " should be " + expectedSize ); index++; } ); jQuery( "#cssFunctionTest" ).remove(); } ); QUnit.test( "css(String, Function) with incoming value", function( assert ) { assert.expect( 3 ); var index, sizes = [ "10px", "20px", "30px" ]; jQuery( "
" + "
" + "
" ) .appendTo( "body" ); index = 0; jQuery( "#cssFunctionTest div" ).css( "font-size", function() { var size = sizes[ index ]; index++; return size; } ); index = 0; jQuery( "#cssFunctionTest div" ).css( "font-size", function( i, computedSize ) { var expectedSize = sizes[ index ]; assert.equal( computedSize, expectedSize, "Div #" + index + " should be " + expectedSize ); index++; return computedSize; } ); jQuery( "#cssFunctionTest" ).remove(); } ); QUnit.test( "css(Object) where values are Functions", function( assert ) { assert.expect( 3 ); var index, sizes = [ "10px", "20px", "30px" ]; jQuery( "
" + "
" + "
" ) .appendTo( "body" ); index = 0; jQuery( "#cssFunctionTest div" ).css( { "fontSize": function() { var size = sizes[ index ]; index++; return size; } } ); index = 0; jQuery( "#cssFunctionTest div" ).each( function() { var computedSize = jQuery( this ).css( "font-size" ), expectedSize = sizes[ index ]; assert.equal( computedSize, expectedSize, "Div #" + index + " should be " + expectedSize ); index++; } ); jQuery( "#cssFunctionTest" ).remove(); } ); QUnit.test( "css(Object) where values are Functions with incoming values", function( assert ) { assert.expect( 3 ); var index, sizes = [ "10px", "20px", "30px" ]; jQuery( "
" + "
" + "
" ) .appendTo( "body" ); index = 0; jQuery( "#cssFunctionTest div" ).css( { "fontSize": function() { var size = sizes[ index ]; index++; return size; } } ); index = 0; jQuery( "#cssFunctionTest div" ).css( { "font-size": function( i, computedSize ) { var expectedSize = sizes[ index ]; assert.equal( computedSize, expectedSize, "Div #" + index + " should be " + expectedSize ); index++; return computedSize; } } ); jQuery( "#cssFunctionTest" ).remove(); } ); // .show(), .hide(), can be excluded from the build if ( jQuery.fn.show && jQuery.fn.hide ) { QUnit.test( "show()", function( assert ) { assert.expect( 18 ); var hiddendiv, div, pass, test; hiddendiv = jQuery( "div.hidden" ); assert.equal( jQuery.css( hiddendiv[ 0 ], "display" ), "none", "hiddendiv is display: none" ); hiddendiv.css( "display", "block" ); assert.equal( jQuery.css( hiddendiv[ 0 ], "display" ), "block", "hiddendiv is display: block" ); hiddendiv.show(); assert.equal( jQuery.css( hiddendiv[ 0 ], "display" ), "block", "hiddendiv is display: block" ); hiddendiv.css( "display", "" ); pass = true; div = jQuery( "#qunit-fixture div" ); div.show().each( function() { if ( this.style.display === "none" ) { pass = false; } } ); assert.ok( pass, "Show" ); jQuery( "
" + "

" + "
" + "
" ).appendTo( "#qunit-fixture" ).find( "*" ).css( "display", "none" ); test = { "div": "block", "p": "block", "a": "inline", "code": "inline", "pre": "block", "span": "inline", "table": "table", "thead": "table-header-group", "tbody": "table-row-group", "tr": "table-row", "th": "table-cell", "td": "table-cell", "ul": "block", "li": "list-item" }; jQuery.each( test, function( selector, expected ) { var elem = jQuery( selector, "#show-tests" ).show(); assert.equal( elem.css( "display" ), expected, "Show using correct display type for " + selector ); } ); // Make sure that showing or hiding a text node doesn't cause an error jQuery( "
test
text test" ).show().remove(); jQuery( "
test
text test" ).hide().remove(); } ); QUnit.test( "show/hide detached nodes", function( assert ) { assert.expect( 19 ); var div, span, tr; div = jQuery( "
" ).hide(); assert.equal( div.css( "display" ), "none", "hide() updates inline style of a detached div" ); div.appendTo( "#qunit-fixture" ); assert.equal( div.css( "display" ), "none", "A hidden-while-detached div is hidden after attachment" ); div.show(); assert.equal( div.css( "display" ), "block", "A hidden-while-detached div can be shown after attachment" ); div = jQuery( "