Title: [140151] branches/chromium/1364/Source/WebCore/css/themeChromiumAndroid.css
Revision
140151
Author
pe...@chromium.org
Date
2013-01-18 08:05:01 -0800 (Fri, 18 Jan 2013)

Log Message

Merge 139087
> [Chromium] Modify Android's user agent CSS to not set a border-radius on select elements
> https://bugs.webkit.org/show_bug.cgi?id=106327
> 
> Reviewed by Adam Barth.
> 
> Android's user agent CSS overrides the style applied to <select>
> elements with a @size or @multiple attribute, and then applies
> (among other things) a border-radius of 5 pixels. While select
> elements with a larger size or multiple selection should appear
> as drop-down boxes for now, setting the border radius causes
> Chromium to skip rendering the background and border, making
> them hard to read when the page relies on the default styling.
> 
> This is covered by existing pixel tests.
> 
> * css/themeChromiumAndroid.css:
> (select[size][multiple]):
> 

TBR=pe...@chromium.org
Review URL: https://codereview.chromium.org/12018018

Modified Paths

Diff

Modified: branches/chromium/1364/Source/WebCore/css/themeChromiumAndroid.css (140150 => 140151)


--- branches/chromium/1364/Source/WebCore/css/themeChromiumAndroid.css	2013-01-18 15:59:16 UTC (rev 140150)
+++ branches/chromium/1364/Source/WebCore/css/themeChromiumAndroid.css	2013-01-18 16:05:01 UTC (rev 140151)
@@ -36,6 +36,6 @@
     -webkit-appearance: menulist;
     -webkit-box-align: center;
     border: 1px solid;
-    border-radius: 5px;
+    border-radius: initial;
     white-space: pre;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to