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

Unified Diff: third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. 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
Index: third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
index 1e90530d5cf346692d96f99905ec773cc2698f9b..fe7cd072b4006060ba4b1065b50797f452601957 100644
--- a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
+++ b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
@@ -21,8 +21,8 @@ TEST_F(EditingUtilitiesTest, directionOfEnclosingBlock) {
setShadowContent(shadowContent, "host");
Node* one = document().getElementById("one");
- EXPECT_EQ(TextDirection::Ltr, directionOfEnclosingBlock(Position(one, 0)));
- EXPECT_EQ(TextDirection::Rtl,
+ EXPECT_EQ(TextDirection::kLtr, directionOfEnclosingBlock(Position(one, 0)));
+ EXPECT_EQ(TextDirection::kRtl,
directionOfEnclosingBlock(PositionInFlatTree(one, 0)));
}

Powered by Google App Engine
This is Rietveld 408576698