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

Unified Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 1210903004: Implement hanja counter styles (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix remaining tests Created 5 years, 6 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 | « LayoutTests/fast/lists/li-values-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/Source/core/css/CSSPrimitiveValueMappings.h b/Source/core/css/CSSPrimitiveValueMappings.h
index 902dc5db80480da6c5f4ea624731395f39ef5bc2..c87dae894140b94a4f71767e741826f3635bdacc 100644
--- a/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/Source/core/css/CSSPrimitiveValueMappings.h
@@ -1579,6 +1579,12 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EListStyleType e)
case KoreanHangulFormal:
m_value.valueID = CSSValueKoreanHangulFormal;
break;
+ case KoreanHanjaFormal:
+ m_value.valueID = CSSValueKoreanHanjaFormal;
+ break;
+ case KoreanHanjaInformal:
+ m_value.valueID = CSSValueKoreanHanjaInformal;
+ break;
case Hebrew:
m_value.valueID = CSSValueHebrew;
break;
« no previous file with comments | « LayoutTests/fast/lists/li-values-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698