| Index: Source/core/style/ComputedStyle.h
|
| diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h
|
| index 92715a46241ec0bd28a2f73bd662b45776159f93..e9ccf08010a2d0abedc1b50ea08b8f469fdc3d59 100644
|
| --- a/Source/core/style/ComputedStyle.h
|
| +++ b/Source/core/style/ComputedStyle.h
|
| @@ -852,6 +852,7 @@ public:
|
| float transformOriginZ() const { return transformOrigin().z(); }
|
| bool has3DTransform() const { return rareNonInheritedData->m_transform->has3DTransform(); }
|
| bool hasTransform() const { return hasTransformOperations() || hasMotionPath() || hasCurrentTransformAnimation() || translate() || rotate() || scale(); }
|
| + bool hasTransformOperations() const { return !rareNonInheritedData->m_transform->m_operations.operations().isEmpty(); }
|
| bool transformDataEquivalent(const ComputedStyle& otherStyle) const { return rareNonInheritedData->m_transform == otherStyle.rareNonInheritedData->m_transform; }
|
|
|
| StyleMotionPath* motionPath() const { return rareNonInheritedData->m_transform->m_motion.m_path.get(); }
|
| @@ -1817,7 +1818,6 @@ private:
|
|
|
| void appendContent(PassOwnPtr<ContentData>);
|
| void addAppliedTextDecoration(const AppliedTextDecoration&);
|
| - bool hasTransformOperations() const { return !rareNonInheritedData->m_transform->m_operations.operations().isEmpty(); }
|
| void applyMotionPathTransform(TransformationMatrix&) const;
|
|
|
| bool diffNeedsFullLayoutAndPaintInvalidation(const ComputedStyle& other) const;
|
|
|