| Index: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| index 35509148ac0ab89ba718a446e33c0f733a6b6b26..80f5af487013849c8dfd15bfa8585ca568131a65 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| @@ -218,7 +218,7 @@ static void adjustStyleForHTMLElement(ComputedStyle& style, HTMLElement& element
|
| if (isHTMLRTElement(element)) {
|
| // Ruby text does not support float or position. This might change with evolution of the specification.
|
| style.setPosition(StaticPosition);
|
| - style.setFloating(NoFloat);
|
| + style.setFloating(EFloat::NoFloat);
|
| return;
|
| }
|
|
|
| @@ -317,7 +317,7 @@ static void adjustStyleForDisplay(ComputedStyle& style, const ComputedStyle& par
|
| style.setWritingMode(TopToBottomWritingMode);
|
|
|
| if (parentStyle.isDisplayFlexibleOrGridBox()) {
|
| - style.setFloating(NoFloat);
|
| + style.setFloating(EFloat::NoFloat);
|
| style.setDisplay(equivalentBlockDisplay(style.display()));
|
|
|
| // We want to count vertical percentage paddings/margins on flex items because our current
|
|
|