| Index: third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp | 
| diff --git a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp | 
| index d64c35f2942aff6a43716f039e6e339de6747fbc..710af227536c2c89fc686705c72fb0a2f8e9d38f 100644 | 
| --- a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp | 
| +++ b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp | 
| @@ -421,6 +421,11 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, | 
| case CSSPropertyBoxShadow: | 
| style->setBoxShadow(toAnimatableShadow(value)->getShadowList()); | 
| return; | 
| +    case CSSPropertyCaretColor: | 
| +      style->setCaretColor(toAnimatableColor(value)->getColor()); | 
| +      style->setVisitedLinkCaretColor( | 
| +          toAnimatableColor(value)->visitedLinkColor()); | 
| +      return; | 
| case CSSPropertyClip: | 
| style->setClip(animatableValueToLengthBox(value, state)); | 
| return; | 
|  |