| Index: third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| index fe24b630745e18e81ddfbcd81793ad21380e42e8..b727b9b976890808fb69bf60dbca3ff3e0c3adb3 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| @@ -71,8 +71,8 @@ TEST(ComputedStyleTest, FocusRingOutset) {
|
| TEST(ComputedStyleTest, Preserve3dForceStackingContext) {
|
| RefPtr<ComputedStyle> style = ComputedStyle::create();
|
| style->setTransformStyle3D(TransformStyle3DPreserve3D);
|
| - style->setOverflowX(OverflowHidden);
|
| - style->setOverflowY(OverflowHidden);
|
| + style->setOverflowX(EOverflow::Hidden);
|
| + style->setOverflowY(EOverflow::Hidden);
|
| style->updateIsStackingContext(false, false);
|
| EXPECT_EQ(TransformStyle3DFlat, style->usedTransformStyle3D());
|
| EXPECT_TRUE(style->isStackingContext());
|
|
|