| Index: Source/core/rendering/style/RenderStyle.h
|
| diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
|
| index 8cc08647afbad5ece1f99817a9f5fe3e45d09055..3b6c65484f494c7ee4a7f50d07138ce3156b5477 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
|
|
|
| @@ -1396,6 +1397,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(); }
|
|
|