| Index: third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp b/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
|
| index f789441a0d49868408bc04fe356d7dc52bb14581..a5e07405f6ac5f289a6ee3c8557aef9de7af527f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
|
| @@ -47,8 +47,8 @@ HTMLSummaryElement::HTMLSummaryElement(Document& document)
|
| LayoutObject* HTMLSummaryElement::createLayoutObject(
|
| const ComputedStyle& style) {
|
| EDisplay display = style.display();
|
| - if (display == EDisplay::Flex || display == EDisplay::InlineFlex ||
|
| - display == EDisplay::Grid || display == EDisplay::InlineGrid)
|
| + if (display == EDisplay::kFlex || display == EDisplay::kInlineFlex ||
|
| + display == EDisplay::kGrid || display == EDisplay::kInlineGrid)
|
| return LayoutObject::createObject(this, style);
|
| return new LayoutBlockFlow(this);
|
| }
|
|
|