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

Unified Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 2916523002: Generate enum/getters/setters/mappings for text-combine-upright. (Closed)
Patch Set: shend@ suggestions Created 3 years, 7 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/css/ComputedStyleCSSValueMapping.cpp
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
index 3c2274f20e89332d21f9d4347cd8859771359760..d67b9c9076c68ea2ccbbe35de4ec11f37a220dd4 100644
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
@@ -3304,10 +3304,10 @@ const CSSValue* ComputedStyleCSSValueMapping::Get(
case CSSPropertyWebkitWritingMode:
return CSSIdentifierValue::Create(style.GetWritingMode());
case CSSPropertyWebkitTextCombine:
- if (style.GetTextCombine() == TextCombine::kAll)
+ if (style.TextCombine() == ETextCombine::kAll)
return CSSIdentifierValue::Create(CSSValueHorizontal);
case CSSPropertyTextCombineUpright:
- return CSSIdentifierValue::Create(style.GetTextCombine());
+ return CSSIdentifierValue::Create(style.TextCombine());
case CSSPropertyWebkitTextOrientation:
if (style.GetTextOrientation() == TextOrientation::kMixed)
return CSSIdentifierValue::Create(CSSValueVerticalRight);
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValueIDMappings.h ('k') | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698