]> source.dussan.org Git - jquery.git/commitdiff
Adds box-sizing check for IE9 inputs and buttons
authortimmywil <tim.willison@thisismedium.com>
Thu, 14 Apr 2011 20:26:20 +0000 (16:26 -0400)
committertimmywil <tim.willison@thisismedium.com>
Thu, 14 Apr 2011 20:26:20 +0000 (16:26 -0400)
src/css.js

index 385c21a078f1ae60912e93eb2f41b9aba1ebc31d..9db6599677156fcc0985a40aef05fc1e546d7f1a 100644 (file)
@@ -344,7 +344,8 @@ function getWH( elem, name, extra ) {
                // We're addressing the way Firefox handles certain inputs and buttons,
                // offsetWidth/height actually returns a normal width/height
                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
        if ( boxSizing || cur === "auto" ) {