Index: third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp |
diff --git a/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp |
index 87b7b2f5e88a05a8be4cae1fb6e67613110c3d06..188253036abac9fbfd8dc29dce9f46d144a7d77d 100644 |
--- a/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp |
+++ b/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp |
@@ -169,8 +169,8 @@ bool LengthPropertyFunctions::getLength(CSSPropertyID property, const ComputedSt |
case CSSPropertyMinWidth: |
result = style.minWidth(); |
return true; |
- case CSSPropertyMotionOffset: |
- result = style.motionOffset(); |
+ case CSSPropertyOffsetDistance: |
+ result = style.offsetDistance(); |
return true; |
case CSSPropertyPaddingBottom: |
result = style.paddingBottom(); |
@@ -354,8 +354,8 @@ bool LengthPropertyFunctions::setLength(CSSPropertyID property, ComputedStyle& s |
case CSSPropertyMinWidth: |
style.setMinWidth(value); |
return true; |
- case CSSPropertyMotionOffset: |
- style.setMotionOffset(value); |
+ case CSSPropertyOffsetDistance: |
+ style.setOffsetDistance(value); |
return true; |
case CSSPropertyPaddingBottom: |
style.setPaddingBottom(value); |