Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: Source/WebKit/chromium/src/WebColorName.cpp

Issue 14096013: Implement select element list box with shadow DOM. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@shadowselect
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebKit/chromium/src/WebColorName.cpp
diff --git a/Source/WebKit/chromium/src/WebColorName.cpp b/Source/WebKit/chromium/src/WebColorName.cpp
index 984afe7b2eb3456ea447511ee5bfd13cb0f9597e..fa5be898b0be1a52ccae9f7ea07be53dab6a6926 100644
--- a/Source/WebKit/chromium/src/WebColorName.cpp
+++ b/Source/WebKit/chromium/src/WebColorName.cpp
@@ -48,6 +48,10 @@ static int toCSSValueKeyword(WebColorName name)
return CSSValueActiveborder;
case WebColorActiveCaption:
return CSSValueActivecaption;
+ case WebColorActiveListBoxSelection:
+ return CSSValueActivelistboxselection;
+ case WebColorActiveListBoxSelectionText:
+ return CSSValueActivelistboxselectiontext;
case WebColorAppworkspace:
return CSSValueAppworkspace;
case WebColorBackground:
@@ -74,6 +78,10 @@ static int toCSSValueKeyword(WebColorName name)
return CSSValueInactivecaption;
case WebColorInactiveCaptionText:
return CSSValueInactivecaptiontext;
+ case WebColorInactiveListBoxSelection:
+ return CSSValueInactivelistboxselection;
+ case WebColorInactiveListBoxSelectionText:
+ return CSSValueInactivelistboxselectiontext;
case WebColorInfoBackground:
return CSSValueInfobackground;
case WebColorInfoText:
« Source/WebCore/html/HTMLOptionElement.cpp ('K') | « Source/WebKit/chromium/public/WebColorName.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698