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

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

Issue 25132005: Web Animations CSS: Handle border-spacing property (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove text Created 7 years, 3 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/core/animation/css/CSSAnimatableValueFactory.cpp
diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
index 2472289b93be6f9f9d43abfec1a87f6e49105591..3ab8e19040c3f5e65f55675c05fedb9a1282ab1f 100644
--- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -210,6 +210,10 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(CSSPropertyID prop
return createFromLength(style->textIndent(), style);
case CSSPropertyTop:
return createFromLength(style->top(), style);
+ case CSSPropertyWebkitBorderHorizontalSpacing:
+ return createFromDouble(style->horizontalBorderSpacing());
+ case CSSPropertyWebkitBorderVerticalSpacing:
+ return createFromDouble(style->verticalBorderSpacing());
case CSSPropertyWebkitColumnRuleColor:
return createFromColor(property, style);
case CSSPropertyWebkitColumnRuleWidth:

Powered by Google App Engine
This is Rietveld 408576698