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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTextTest.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/layout/LayoutTextTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTextTest.cpp b/third_party/WebKit/Source/core/layout/LayoutTextTest.cpp
index affb1c0ce53a62928822cbc104649e3858c96ad6..33ef8115d003d17d3975325a50fe9a3d8f661c4c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTextTest.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTextTest.cpp
@@ -30,20 +30,20 @@ const char* kTacoText = "Los Compadres Taco Truck";
TEST_F(LayoutTextTest, WidthZeroFromZeroLength) {
setBasicBody(kTacoText);
- ASSERT_EQ(0, getBasicText()->width(0u, 0u, LayoutUnit(), TextDirection::Ltr,
+ ASSERT_EQ(0, getBasicText()->width(0u, 0u, LayoutUnit(), TextDirection::kLtr,
false));
}
TEST_F(LayoutTextTest, WidthMaxFromZeroLength) {
setBasicBody(kTacoText);
ASSERT_EQ(0, getBasicText()->width(std::numeric_limits<unsigned>::max(), 0u,
- LayoutUnit(), TextDirection::Ltr, false));
+ LayoutUnit(), TextDirection::kLtr, false));
}
TEST_F(LayoutTextTest, WidthZeroFromMaxLength) {
setBasicBody(kTacoText);
float width = getBasicText()->width(0u, std::numeric_limits<unsigned>::max(),
- LayoutUnit(), TextDirection::Ltr, false);
+ LayoutUnit(), TextDirection::kLtr, false);
// Width may vary by platform and we just want to make sure it's something
// roughly reasonable.
ASSERT_GE(width, 100.f);
@@ -54,7 +54,7 @@ TEST_F(LayoutTextTest, WidthMaxFromMaxLength) {
setBasicBody(kTacoText);
ASSERT_EQ(0, getBasicText()->width(std::numeric_limits<unsigned>::max(),
std::numeric_limits<unsigned>::max(),
- LayoutUnit(), TextDirection::Ltr, false));
+ LayoutUnit(), TextDirection::kLtr, false));
}
TEST_F(LayoutTextTest, WidthWithHugeLengthAvoidsOverflow) {
@@ -73,14 +73,14 @@ TEST_F(LayoutTextTest, WidthWithHugeLengthAvoidsOverflow) {
// Width may vary by platform and we just want to make sure it's something
// roughly reasonable.
const float width = getBasicText()->width(
- 23u, 4294967282u, LayoutUnit(2.59375), TextDirection::Rtl, false);
+ 23u, 4294967282u, LayoutUnit(2.59375), TextDirection::kRtl, false);
ASSERT_GE(width, 100.f);
ASSERT_LE(width, 300.f);
}
TEST_F(LayoutTextTest, WidthFromBeyondLength) {
setBasicBody("x");
- ASSERT_EQ(0u, getBasicText()->width(1u, 1u, LayoutUnit(), TextDirection::Ltr,
+ ASSERT_EQ(0u, getBasicText()->width(1u, 1u, LayoutUnit(), TextDirection::kLtr,
false));
}
@@ -89,7 +89,7 @@ TEST_F(LayoutTextTest, WidthLengthBeyondLength) {
// Width may vary by platform and we just want to make sure it's something
// roughly reasonable.
const float width =
- getBasicText()->width(0u, 2u, LayoutUnit(), TextDirection::Ltr, false);
+ getBasicText()->width(0u, 2u, LayoutUnit(), TextDirection::kLtr, false);
ASSERT_GE(width, 4.f);
ASSERT_LE(width, 20.f);
}

Powered by Google App Engine
This is Rietveld 408576698