Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1322)

Unified Diff: Source/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added tests Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698