if ( jQuery.css ) { QUnit.module( "css", { teardown: 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 via filter property set in stylesheet in IE" ); jQuery( "#empty" ).css( { "opacity": "1" } ); assert.equal( jQuery( "#empty" ).css( "opacity" ), "1", "Assert opacity is taken from style attribute when set vs stylesheet in IE with filters" ); 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( 16 ); 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 ) { assert.ok( true, message ); // ...or fail with actual and expected values } else { assert.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" ); // Opera 12 does something funky for this one // Just disabling for 2.2 // add( "lineHeight", 50, "%" ); } ); 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" ); // Opera sometimes doesn't update 'display' correctly, see #2037 jQuery( "#t2037" )[ 0 ].innerHTML = jQuery( "#t2037" )[ 0 ].innerHTML; 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( "