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

Unified Diff: third_party/WebKit/Source/core/style/StyleGridData.cpp

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch for landing Created 5 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleGridData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleGridData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleGridData.cpp b/third_party/WebKit/Source/core/style/StyleGridData.cpp
index 513ee8f59514ce5f96f9b662775f124f3caeb2c4..c0d5b47769ecc219daf8a72ac3717568e82e3ca2 100644
--- a/third_party/WebKit/Source/core/style/StyleGridData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleGridData.cpp
@@ -43,6 +43,8 @@ StyleGridData::StyleGridData()
, m_namedGridArea(ComputedStyle::initialNamedGridArea())
, m_namedGridAreaRowCount(ComputedStyle::initialNamedGridAreaCount())
, m_namedGridAreaColumnCount(ComputedStyle::initialNamedGridAreaCount())
+ , m_gridColumnGap(ComputedStyle::initialGridColumnGap())
+ , m_gridRowGap(ComputedStyle::initialGridRowGap())
{
}
@@ -60,6 +62,8 @@ StyleGridData::StyleGridData(const StyleGridData& o)
, m_namedGridArea(o.m_namedGridArea)
, m_namedGridAreaRowCount(o.m_namedGridAreaRowCount)
, m_namedGridAreaColumnCount(o.m_namedGridAreaColumnCount)
+ , m_gridColumnGap(o.m_gridColumnGap)
+ , m_gridRowGap(o.m_gridRowGap)
{
}
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleGridData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698