| Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| index 66e520e3f9201bcbc03389b00dc3c847fe952649..7a9c6522c2423e9d0ef176a471786e93d4f953f7 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| @@ -35,7 +35,7 @@ namespace blink {
|
| class SameSizeStyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
|
| public:
|
| float floats[3];
|
| - int integers;
|
| + int integers[11];
|
|
|
| LengthPoint lengthPoints[2];
|
| LineClampValue lineClamps;
|
| @@ -72,6 +72,16 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| , m_perspective(ComputedStyle::initialPerspective())
|
| , m_shapeImageThreshold(ComputedStyle::initialShapeImageThreshold())
|
| , m_order(ComputedStyle::initialOrder())
|
| + , m_onclickVpi(ComputedStyle::initialOnclickVpi())
|
| + , m_onclickVpu(ComputedStyle::initialOnclickVpu())
|
| + , m_onscrollVpi(ComputedStyle::initialOnscrollVpi())
|
| + , m_onscrollVpu(ComputedStyle::initialOnscrollVpu())
|
| + , m_ontouchstartVpi(ComputedStyle::initialOntouchstartVpi())
|
| + , m_ontouchstartVpu(ComputedStyle::initialOntouchstartVpu())
|
| + , m_ontouchendVpi(ComputedStyle::initialOntouchendVpi())
|
| + , m_ontouchendVpu(ComputedStyle::initialOntouchendVpu())
|
| + , m_ontouchmoveVpi(ComputedStyle::initialOntouchmoveVpi())
|
| + , m_ontouchmoveVpu(ComputedStyle::initialOntouchmoveVpu())
|
| , m_perspectiveOrigin(ComputedStyle::initialPerspectiveOrigin())
|
| , m_objectPosition(ComputedStyle::initialObjectPosition())
|
| , lineClamp(ComputedStyle::initialLineClamp())
|
| @@ -136,6 +146,16 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
|
| , m_perspective(o.m_perspective)
|
| , m_shapeImageThreshold(o.m_shapeImageThreshold)
|
| , m_order(o.m_order)
|
| + , m_onclickVpi(o.m_onclickVpi)
|
| + , m_onclickVpu(o.m_onclickVpu)
|
| + , m_onscrollVpi(o.m_onscrollVpi)
|
| + , m_onscrollVpu(o.m_onscrollVpu)
|
| + , m_ontouchstartVpi(o.m_ontouchstartVpi)
|
| + , m_ontouchstartVpu(o.m_ontouchstartVpu)
|
| + , m_ontouchendVpi(o.m_ontouchendVpi)
|
| + , m_ontouchendVpu(o.m_ontouchendVpu)
|
| + , m_ontouchmoveVpi(o.m_ontouchmoveVpi)
|
| + , m_ontouchmoveVpu(o.m_ontouchmoveVpu)
|
| , m_perspectiveOrigin(o.m_perspectiveOrigin)
|
| , m_objectPosition(o.m_objectPosition)
|
| , lineClamp(o.lineClamp)
|
| @@ -229,6 +249,16 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
|
| && m_perspective == o.m_perspective
|
| && m_shapeImageThreshold == o.m_shapeImageThreshold
|
| && m_order == o.m_order
|
| + && m_onclickVpi == o.m_onclickVpi
|
| + && m_onclickVpu == o.m_onclickVpu
|
| + && m_onscrollVpi == o.m_onscrollVpi
|
| + && m_onscrollVpu == o.m_onscrollVpu
|
| + && m_ontouchstartVpi == o.m_ontouchstartVpi
|
| + && m_ontouchstartVpu == o.m_ontouchstartVpu
|
| + && m_ontouchendVpi == o.m_ontouchendVpi
|
| + && m_ontouchendVpu == o.m_ontouchendVpu
|
| + && m_ontouchmoveVpi == o.m_ontouchmoveVpi
|
| + && m_ontouchmoveVpu == o.m_ontouchmoveVpu
|
| && m_perspectiveOrigin == o.m_perspectiveOrigin
|
| && m_objectPosition == o.m_objectPosition
|
| && lineClamp == o.lineClamp
|
|
|