| Index: third_party/WebKit/Source/core/dom/TextLinkColors.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/TextLinkColors.cpp b/third_party/WebKit/Source/core/dom/TextLinkColors.cpp
|
| index 0bf89d1040448a2648409265af6c2736fe642c28..dba4f72acec32989c06568b3386ad706277b66c2 100644
|
| --- a/third_party/WebKit/Source/core/dom/TextLinkColors.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/TextLinkColors.cpp
|
| @@ -65,7 +65,8 @@ Color TextLinkColors::colorFromCSSValue(const CSSValue& value, Color currentColo
|
|
|
| CSSValueID valueID = toCSSPrimitiveValue(value).getValueID();
|
| switch (valueID) {
|
| - case 0:
|
| + case CSSValueInvalid:
|
| + NOTREACHED();
|
| return Color();
|
| case CSSValueInternalQuirkInherit:
|
| return textColor();
|
| @@ -75,7 +76,6 @@ Color TextLinkColors::colorFromCSSValue(const CSSValue& value, Color currentColo
|
| return activeLinkColor();
|
| case CSSValueWebkitFocusRingColor:
|
| return LayoutTheme::theme().focusRingColor();
|
| - case CSSValueInvert: // We don't support outline-color: invert
|
| case CSSValueCurrentcolor:
|
| return currentColor;
|
| default:
|
|
|