Index: third_party/WebKit/Source/core/layout/LayoutGrid.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp |
index e294061f630a284ea13a33f3db6fc4fca3bcfac6..c49a7f40467a4665035b4239c3668efbfb2e0916 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp |
@@ -298,7 +298,7 @@ void LayoutGrid::styleDidChange(StyleDifference diff, const ComputedStyle* oldSt |
if (explicitGridDidResize(*oldStyle) |
|| namedGridLinesDefinitionDidChange(*oldStyle) |
- || oldStyle->gridAutoFlow() != styleRef().gridAutoFlow()) |
+ || oldStyle->getGridAutoFlow() != styleRef().getGridAutoFlow()) |
dirtyGrid(); |
} |
@@ -1795,7 +1795,7 @@ void LayoutGrid::updateAutoMarginsInColumnAxisIfNeeded(LayoutBox& child) |
GridAxisPosition LayoutGrid::columnAxisPositionForChild(const LayoutBox& child) const |
{ |
bool hasOrthogonalWritingMode = child.isHorizontalWritingMode() != isHorizontalWritingMode(); |
- bool hasSameWritingMode = child.styleRef().writingMode() == styleRef().writingMode(); |
+ bool hasSameWritingMode = child.styleRef().getWritingMode() == styleRef().getWritingMode(); |
switch (ComputedStyle::resolveAlignment(styleRef(), child.styleRef(), ItemPositionStretch)) { |
case ItemPositionSelfStart: |