| Index: Source/core/rendering/style/RenderStyle.h
|
| diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
|
| index 8fe1498fd6ee7ec2f81030d5726cd31e70f87dd3..5910bd9b19fb3a4fe9deabefccefd2475d2651bc 100644
|
| --- a/Source/core/rendering/style/RenderStyle.h
|
| +++ b/Source/core/rendering/style/RenderStyle.h
|
| @@ -967,6 +967,7 @@ public:
|
| bool willChangeContents() const { return rareNonInheritedData->m_willChange->m_contents; }
|
| bool willChangeScrollPosition() const { return rareNonInheritedData->m_willChange->m_scrollPosition; }
|
| bool hasWillChangeCompositingHint() const;
|
| + bool subtreeWillChangeContents() const { return rareInheritedData->m_subtreeWillChangeContents; }
|
|
|
| // attribute setter methods
|
|
|
| @@ -1390,6 +1391,7 @@ public:
|
| void setWillChangeProperties(const Vector<CSSPropertyID>& properties) { SET_VAR(rareNonInheritedData.access()->m_willChange, m_properties, properties); }
|
| void setWillChangeContents(bool b) { SET_VAR(rareNonInheritedData.access()->m_willChange, m_contents, b); }
|
| void setWillChangeScrollPosition(bool b) { SET_VAR(rareNonInheritedData.access()->m_willChange, m_scrollPosition, b); }
|
| + void setSubtreeWillChangeContents(bool b) { SET_VAR(rareInheritedData, m_subtreeWillChangeContents, b); }
|
|
|
| const SVGRenderStyle* svgStyle() const { return m_svgStyle.get(); }
|
| SVGRenderStyle* accessSVGStyle() { return m_svgStyle.access(); }
|
|
|