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

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

Issue 1184433004: Implement chinese counter styles (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing 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
Index: Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/Source/core/css/CSSPrimitiveValueMappings.h b/Source/core/css/CSSPrimitiveValueMappings.h
index dd98154212e393bab30ef30ca9ae5ca619af4bca..902dc5db80480da6c5f4ea624731395f39ef5bc2 100644
--- a/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/Source/core/css/CSSPrimitiveValueMappings.h
@@ -1636,6 +1636,12 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EListStyleType e)
case Persian:
m_value.valueID = CSSValuePersian;
break;
+ case SimpChineseFormal:
+ m_value.valueID = CSSValueSimpChineseFormal;
+ break;
+ case SimpChineseInformal:
+ m_value.valueID = CSSValueSimpChineseInformal;
+ break;
case Square:
m_value.valueID = CSSValueSquare;
break;
@@ -1648,6 +1654,12 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EListStyleType e)
case Tibetan:
m_value.valueID = CSSValueTibetan;
break;
+ case TradChineseFormal:
+ m_value.valueID = CSSValueTradChineseFormal;
+ break;
+ case TradChineseInformal:
+ m_value.valueID = CSSValueTradChineseInformal;
+ break;
case UpperAlpha:
m_value.valueID = CSSValueUpperAlpha;
break;
« no previous file with comments | « LayoutTests/fast/lists/w3-css3-list-styles-fallback-style-expected.txt ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698