| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| index ec17e6c89f8c70b1837503d97d143af76e93c9d9..3184ad5c5a4ef04f7f70463640b98b687cc92e81 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -54,7 +54,7 @@ void LayoutTableRow::willBeRemovedFromTree() {
|
|
|
| void LayoutTableRow::styleDidChange(StyleDifference diff,
|
| const ComputedStyle* oldStyle) {
|
| - DCHECK_EQ(style()->display(), EDisplay::TableRow);
|
| + DCHECK_EQ(style()->display(), EDisplay::kTableRow);
|
|
|
| LayoutTableBoxComponent::styleDidChange(diff, oldStyle);
|
| propagateStyleToAnonymousChildren();
|
| @@ -278,7 +278,7 @@ LayoutTableRow* LayoutTableRow::createAnonymousWithParent(
|
| LayoutTableRow* newRow = LayoutTableRow::createAnonymous(&parent->document());
|
| RefPtr<ComputedStyle> newStyle =
|
| ComputedStyle::createAnonymousStyleWithDisplay(parent->styleRef(),
|
| - EDisplay::TableRow);
|
| + EDisplay::kTableRow);
|
| newRow->setStyle(std::move(newStyle));
|
| return newRow;
|
| }
|
|
|