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

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

Issue 14493016: Fix handling of 'inherit' and 'initial' for grid lines (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Take 2: Forgot the code Created 7 years, 8 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 | « Source/core/rendering/style/RenderStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleGridItemData.cpp
diff --git a/Source/core/rendering/style/StyleGridItemData.cpp b/Source/core/rendering/style/StyleGridItemData.cpp
index 011baa89ad3444dfca37830f03e38b2d3e9a77d9..ea938043375c93126c16abc41091ab87c692c64f 100644
--- a/Source/core/rendering/style/StyleGridItemData.cpp
+++ b/Source/core/rendering/style/StyleGridItemData.cpp
@@ -35,10 +35,10 @@
namespace WebCore {
StyleGridItemData::StyleGridItemData()
- : m_gridStart(RenderStyle::initialGridPosition())
- , m_gridEnd(RenderStyle::initialGridPosition())
- , m_gridBefore(RenderStyle::initialGridPosition())
- , m_gridAfter(RenderStyle::initialGridPosition())
+ : m_gridStart(RenderStyle::initialGridStart())
+ , m_gridEnd(RenderStyle::initialGridEnd())
+ , m_gridBefore(RenderStyle::initialGridBefore())
+ , m_gridAfter(RenderStyle::initialGridAfter())
{
}
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698