| 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 5fcda23f6e5c1630ac1fab03817ed21f1bdbe3d9..c058e29af5d0487ca3aa94a51064dd23e143722f 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -908,7 +908,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; }
|
|
|
|
|