| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| index c27228946e7a0a51a5fc71821ca86fa1e9601660..732fa1ab0caaa8913c382557dc25ab2f465f0ef3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -115,9 +115,9 @@ LayoutTableSection::~LayoutTableSection() {}
|
|
|
| void LayoutTableSection::styleDidChange(StyleDifference diff,
|
| const ComputedStyle* oldStyle) {
|
| - DCHECK(style()->display() == EDisplay::TableFooterGroup ||
|
| - style()->display() == EDisplay::TableRowGroup ||
|
| - style()->display() == EDisplay::TableHeaderGroup);
|
| + DCHECK(style()->display() == EDisplay::kTableFooterGroup ||
|
| + style()->display() == EDisplay::kTableRowGroup ||
|
| + style()->display() == EDisplay::kTableHeaderGroup);
|
|
|
| LayoutTableBoxComponent::styleDidChange(diff, oldStyle);
|
| propagateStyleToAnonymousChildren();
|
| @@ -1846,7 +1846,7 @@ LayoutTableSection* LayoutTableSection::createAnonymousWithParent(
|
| const LayoutObject* parent) {
|
| RefPtr<ComputedStyle> newStyle =
|
| ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(),
|
| - EDisplay::TableRowGroup);
|
| + EDisplay::kTableRowGroup);
|
| LayoutTableSection* newSection = new LayoutTableSection(nullptr);
|
| newSection->setDocumentForAnonymous(&parent->document());
|
| newSection->setStyle(std::move(newStyle));
|
|
|