diff options
author | Leon Clarke <leonclarke@google.com> | 2009-10-01 10:30:38 +0100 |
---|---|---|
committer | Leon Clarke <leonclarke@google.com> | 2009-10-01 10:30:38 +0100 |
commit | 02b5ebb30fc88967b843818cbc61987f9dc9685d (patch) | |
tree | 30f9046fbc85cb07768fe22db5cb03fbb42f3b56 /WebCore | |
parent | 14e3d9bdf2270d399bae78946e3efe62a6c6c373 (diff) | |
download | external_webkit-02b5ebb30fc88967b843818cbc61987f9dc9685d.zip external_webkit-02b5ebb30fc88967b843818cbc61987f9dc9685d.tar.gz external_webkit-02b5ebb30fc88967b843818cbc61987f9dc9685d.tar.bz2 |
Don't extend the arrow asset of the combo box over the text, so that the real background
color is used.
Re-instate using the correct color for the text.
Diffstat (limited to 'WebCore')
-rw-r--r-- | WebCore/platform/android/RenderThemeAndroid.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/WebCore/platform/android/RenderThemeAndroid.cpp b/WebCore/platform/android/RenderThemeAndroid.cpp index 0f419f5..51f404e 100644 --- a/WebCore/platform/android/RenderThemeAndroid.cpp +++ b/WebCore/platform/android/RenderThemeAndroid.cpp @@ -235,7 +235,7 @@ bool RenderThemeAndroid::paintTextArea(RenderObject* obj, const RenderObject::Pa { if (obj->isMenuList()) return paintCombo(obj, info, rect); - return true; + return true; } void RenderThemeAndroid::adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const @@ -245,7 +245,7 @@ void RenderThemeAndroid::adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle* bool RenderThemeAndroid::paintSearchField(RenderObject*, const RenderObject::PaintInfo&, const IntRect&) { - return true; + return true; } void RenderThemeAndroid::adjustListboxStyle(CSSStyleSelector*, RenderStyle* style, Element*) const @@ -259,12 +259,6 @@ static void adjustMenuListStyleCommon(RenderStyle* style, Element* e) { // Added to make room for our arrow. style->setPaddingRight(Length(RenderSkinCombo::extraWidth(), Fixed)); - // Code copied from RenderThemeMac.mm - // Makes sure that the text shows up on our treatment - bool isEnabled = true; - if (e) - isEnabled = e->isEnabledFormControl(); - style->setColor(isEnabled ? Color::black : Color::darkGray); } void RenderThemeAndroid::adjustMenuListStyle(CSSStyleSelector*, RenderStyle* style, Element* e) const |