Index: third_party/WebKit/Source/core/layout/LayoutObject.h |
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h |
index af596b6af1c4f6fd1e8355e1b2d9216a613fd504..fdce251f83ea92c68b334d2cd53f37c98a64d477 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h |
@@ -754,7 +754,7 @@ public: |
LocalFrame* frame() const { return document().frame(); } |
virtual LayoutMultiColumnSpannerPlaceholder* spannerPlaceholder() const { return nullptr; } |
- bool isColumnSpanAll() const { return style()->columnSpan() == ColumnSpanAll && spannerPlaceholder(); } |
+ bool isColumnSpanAll() const { return style()->getColumnSpan() == ColumnSpanAll && spannerPlaceholder(); } |
// We include isLayoutButton in this check because buttons are implemented |
// using flex box but should still support first-line|first-letter. |