Chromium Code Reviews| Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp |
| diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
| index c93cdd4bfcc245aed82359d5fd7e94d3d383e5eb..d0e8c77cb50453f546e4b3e8e81e31dee9f75c60 100644 |
| --- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
| +++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
| @@ -40,6 +40,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() |
| , lineClamp(RenderStyle::initialLineClamp()) |
| , m_draggableRegionMode(DraggableRegionNone) |
| , m_mask(FillLayer(MaskFillLayer)) |
| + , m_navigation() |
|
esprehn
2013/08/08 03:39:40
leave these off, the default constructor does it f
Krzysztof Olczyk
2013/12/04 13:56:50
Done.
|
| , m_pageSize() |
| , m_shapeInside(RenderStyle::initialShapeInside()) |
| , m_shapeOutside(RenderStyle::initialShapeOutside()) |
| @@ -105,6 +106,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited |
| , m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_transitions)) : nullptr) |
| , m_mask(o.m_mask) |
| , m_maskBoxImage(o.m_maskBoxImage) |
| + , m_navigation(o.m_navigation) |
| , m_pageSize(o.m_pageSize) |
| , m_shapeInside(o.m_shapeInside) |
| , m_shapeOutside(o.m_shapeOutside) |
| @@ -180,6 +182,7 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c |
| && transitionDataEquivalent(o) |
| && m_mask == o.m_mask |
| && m_maskBoxImage == o.m_maskBoxImage |
| + && m_navigation == o.m_navigation |
| && m_pageSize == o.m_pageSize |
| && m_shapeInside == o.m_shapeInside |
| && m_shapeOutside == o.m_shapeOutside |