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

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp

Issue 2520873002: [css-ui] Add support for caret-color property (Closed)
Patch Set: Add new baselines for Mac and Windows Created 4 years, 1 month 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: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
index 6641d8abc3643b2a574912dfe67815257a195630..e4120578272119ace96de6983032fdb4be39c5d5 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -407,6 +407,8 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(
CSSIdentifierValue::create(CSSValueAuto));
}
return createFromLengthBox(style.clip(), style);
+ case CSSPropertyCaretColor:
+ return createFromColor(property, style);
Timothy Loh 2016/11/28 03:11:21 I'm not sure if this is going to end up doing the
Manuel Rego 2016/11/28 10:47:55 Mmmm, interesting I didn't realize about that. I'm
case CSSPropertyColor:
return createFromColor(property, style);
case CSSPropertyFillOpacity:

Powered by Google App Engine
This is Rietveld 408576698