| 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 4b57452f54de17327c93053ee3600e9e81e9027b..3c2c41fa67676806573a279f81ab20ea6945df5b 100644
|
| --- a/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/LengthPropertyFunctions.cpp
|
| @@ -291,9 +291,9 @@ bool LengthPropertyFunctions::getLength(CSSPropertyID property, const ComputedSt
|
| result = style.strokeWidth().length();
|
| return true;
|
| case CSSPropertyVerticalAlign:
|
| - if (style.verticalAlign() != LENGTH)
|
| + if (style.verticalAlign() != VerticalAlignLength)
|
| return false;
|
| - result = style.verticalAlignLength();
|
| + result = style.getVerticalAlignLength();
|
| return true;
|
| case CSSPropertyColumnWidth:
|
| if (style.hasAutoColumnWidth())
|
|
|