We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0933a39 commit 7135c2eCopy full SHA for 7135c2e
test/css.js
@@ -50,12 +50,12 @@ QUnit.test( "jQuery.css with arrays", function( assert ) {
50
expectNoWarning( assert, "String value direct", function() {
51
var cssValues = jQuery( "<div />" )
52
.css( {
53
- lineHeight: "1",
+ "z-index": "2",
54
fontSize: "16px"
55
} )
56
- .css( [ "font-size", "lineHeight" ] );
+ .css( [ "font-size", "zIndex" ] );
57
58
- assert.deepEqual( cssValues, { "font-size": "16px", lineHeight: "1" },
+ assert.deepEqual( cssValues, { "font-size": "16px", zIndex: "2" },
59
".css( array ) works" );
60
} );
61
0 commit comments