| Index: third_party/WebKit/Source/core/html/HTMLFormElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormElement.cpp b/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
|
| index 43b5606b889e10c6f16dfc5c099e88ac3c583135..2ab5f5cec303d093a94d0eaaa10229f54acd2c73 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
|
| @@ -123,13 +123,14 @@ bool HTMLFormElement::layoutObjectIsNeeded(const ComputedStyle& style) {
|
|
|
| EDisplay display = style.display();
|
| bool formIsTablePart =
|
| - display == EDisplay::Table || display == EDisplay::InlineTable ||
|
| - display == EDisplay::TableRowGroup ||
|
| - display == EDisplay::TableHeaderGroup ||
|
| - display == EDisplay::TableFooterGroup || display == EDisplay::TableRow ||
|
| - display == EDisplay::TableColumnGroup ||
|
| - display == EDisplay::TableColumn || display == EDisplay::TableCell ||
|
| - display == EDisplay::TableCaption;
|
| + display == EDisplay::kTable || display == EDisplay::kInlineTable ||
|
| + display == EDisplay::kTableRowGroup ||
|
| + display == EDisplay::kTableHeaderGroup ||
|
| + display == EDisplay::kTableFooterGroup ||
|
| + display == EDisplay::kTableRow ||
|
| + display == EDisplay::kTableColumnGroup ||
|
| + display == EDisplay::kTableColumn || display == EDisplay::kTableCell ||
|
| + display == EDisplay::kTableCaption;
|
|
|
| return formIsTablePart;
|
| }
|
|
|