Adds box-sizing check for IE9 inputs and buttons
This commit is contained in:
parent
1dda994c46
commit
d4b31a15ff
|
@ -344,7 +344,8 @@ function getWH( elem, name, extra ) {
|
||||||
// We're addressing the way Firefox handles certain inputs and buttons,
|
// We're addressing the way Firefox handles certain inputs and buttons,
|
||||||
// offsetWidth/height actually returns a normal width/height
|
// offsetWidth/height actually returns a normal width/height
|
||||||
boxSizing = rinputbutton.test( elem.nodeName ) &&
|
boxSizing = rinputbutton.test( elem.nodeName ) &&
|
||||||
curCSS( elem, "-moz-box-sizing" ) === "border-box";
|
( curCSS( elem, "-moz-box-sizing" ) === "border-box" ||
|
||||||
|
curCSS( elem, "box-sizing" ) === "border-box" );
|
||||||
|
|
||||||
// IE will return auto if we try to grab a width/height that is not set
|
// IE will return auto if we try to grab a width/height that is not set
|
||||||
if ( boxSizing || cur === "auto" ) {
|
if ( boxSizing || cur === "auto" ) {
|
||||||
|
|
Loading…
Reference in a new issue