| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.h b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| index 12f5210b8c87e472bff5a1a03769562b718dde65..7eb7374cfdafb15473b0040e58176f450f3e9cb4 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| @@ -195,9 +195,9 @@ class CORE_EXPORT LayoutTableCell final : public LayoutBlockFlow {
|
| int cellBaselinePosition() const;
|
| bool isBaselineAligned() const {
|
| EVerticalAlign va = style()->verticalAlign();
|
| - return va == VerticalAlignBaseline || va == VerticalAlignTextBottom ||
|
| - va == VerticalAlignTextTop || va == VerticalAlignSuper ||
|
| - va == VerticalAlignSub || va == VerticalAlignLength;
|
| + return va == EVerticalAlign::Baseline || va == EVerticalAlign::TextBottom ||
|
| + va == EVerticalAlign::TextTop || va == EVerticalAlign::Super ||
|
| + va == EVerticalAlign::Sub || va == EVerticalAlign::Length;
|
| }
|
|
|
| // Align the cell in the block direction. This is done by calculating an
|
|
|