Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyleTest.cpp

Issue 2660423004: Rename EOverflow values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyleConstants.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b727b9b976890808fb69bf60dbca3ff3e0c3adb3..f3f588b5fab813752b22d9fd7af0009d31bbfdb2 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(EOverflow::Hidden);
- style->setOverflowY(EOverflow::Hidden);
+ style->setOverflowX(EOverflow::kHidden);
+ style->setOverflowY(EOverflow::kHidden);
style->updateIsStackingContext(false, false);
EXPECT_EQ(TransformStyle3DFlat, style->usedTransformStyle3D());
EXPECT_TRUE(style->isStackingContext());
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyleConstants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698