Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / mac / ThemeMac.mm
index 8bc1a60..0a3a3a8 100644 (file)
@@ -493,9 +493,9 @@ static const IntSize* stepperSizes()
 static NSControlSize stepperControlSizeForFont(const FontDescription& fontDescription)
 {
     int fontSize = fontDescription.computedPixelSize();
-    if (fontSize >= 18)
+    if (fontSize >= 27)
         return NSRegularControlSize;
-    if (fontSize >= 13)
+    if (fontSize >= 22)
         return NSSmallControlSize;
     return NSMiniControlSize;
 }