]> source.dussan.org Git - jquery.git/commitdiff
Fix #14432: Always return string from .css("z-index"). Close gh-1395.
authorGeorge Kats <katsgeorgeek@gmail.com>
Sun, 6 Oct 2013 16:53:26 +0000 (19:53 +0300)
committerRichard Gibson <richard.gibson@gmail.com>
Tue, 15 Oct 2013 16:28:25 +0000 (12:28 -0400)
src/css/curCSS.js
test/unit/css.js

index b648b8dca35c2d50a18fe39b19047f1c824a66a4..c30519d3dd8e5ab497c1000edbc515a4a1f7e2b9 100644 (file)
@@ -44,7 +44,9 @@ function curCSS( elem, name, computed ) {
                }
        }
 
-       return ret;
+       // Support: IE
+       // IE returns zIndex value as an integer.
+       return ret === undefined ? ret : ret + "";
 }
 
 return curCSS;
index 460e5d60bbbf3ac0de974389a00d4e58729433de..cd70adbfc8223fa826c40c4fbf6dbdf168ed6a30 100644 (file)
@@ -197,6 +197,16 @@ test( "css() explicit and relative values", 29, function() {
        equal( $elem.css("opacity"), "1", "'+=0.5' on opacity (params)" );
 });
 
+test("css(String) where values are z-index", function() {
+       expect(1);
+
+       var $elem = jQuery( "<div>" ).appendTo( "#qunit-fixture" );
+
+       $elem.css({ "position": "absolute", "z-index": "1000" });
+       strictEqual( $elem.css( "z-index" ), "1000" );
+});
+
+
 test("css(String, Object)", function() {
        expect( 19 );
        var j, div, display, ret, success;
@@ -353,6 +363,14 @@ test("css(Object) where values are Functions", function() {
        jQuery("#cssFunctionTest").remove();
 });
 
+test("css(String) where values are undefined", function() {
+       expect(1);
+
+       var $elem = jQuery( "#nothiddendiv" );
+
+       strictEqual( $elem.css( "test" ), undefined );
+});
+
 test("css(Object) where values are Functions with incoming values", function() {
        expect(3);