| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 8c273afb60a4a6cbf99f88adebb9c39e279067e9..06c70e080e04596c5abd1cd8c7a55aa7b93dc325 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -913,7 +913,7 @@ public:
|
| bool transformDataEquivalent(const ComputedStyle& otherStyle) const { return rareNonInheritedData->m_transform == otherStyle.rareNonInheritedData->m_transform; }
|
|
|
| StylePath* motionPath() const { return rareNonInheritedData->m_transform->m_motion.m_path.get(); }
|
| - bool hasMotionPath() const { return rareNonInheritedData->m_transform->m_motion.m_path; }
|
| + bool hasMotionPath() const { return motionPath(); }
|
| const Length& motionOffset() const { return rareNonInheritedData->m_transform->m_motion.m_offset; }
|
| const StyleMotionRotation& motionRotation() const { return rareNonInheritedData->m_transform->m_motion.m_rotation; }
|
|
|
|
|