mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Make sure that accessing computed CSS for elements returns 'auto' instead of '' consistently. Fixes #7337.
This commit is contained in:
parent
e377621eaf
commit
9d1bfeb7ff
@ -173,12 +173,13 @@ jQuery.each(["height", "width"], function( i, name ) {
|
||||
val = curCSS( elem, name, name );
|
||||
|
||||
if ( val != null ) {
|
||||
return val === "auto" ? "" : val;
|
||||
return val;
|
||||
}
|
||||
}
|
||||
|
||||
if ( val < 0 || val == null ) {
|
||||
return elem.style[ name ];
|
||||
val = elem.style[ name ];
|
||||
return val === "" ? "auto" : val;
|
||||
}
|
||||
|
||||
return typeof val === "string" ? val : val + "px";
|
||||
@ -247,7 +248,7 @@ if ( getComputedStyle ) {
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
return ret === "" ? "auto" : ret;
|
||||
};
|
||||
|
||||
} else if ( document.documentElement.currentStyle ) {
|
||||
@ -274,7 +275,7 @@ if ( getComputedStyle ) {
|
||||
elem.runtimeStyle.left = rsLeft;
|
||||
}
|
||||
|
||||
return ret;
|
||||
return ret === "" ? "auto" : ret;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -13,8 +13,8 @@ test("css(String|Hash)", function() {
|
||||
|
||||
var div = jQuery( "<div>" );
|
||||
|
||||
equals( div.css("width"), "", "Width on disconnected node." );
|
||||
equals( div.css("height"), "", "Height on disconnected node." );
|
||||
equals( div.css("width"), "auto", "Width on disconnected node." );
|
||||
equals( div.css("height"), "auto", "Height on disconnected node." );
|
||||
|
||||
div.css({ width: 4, height: 4 });
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user