@@ -117,6 +117,7 @@ static class InitialValues
117
117
public static readonly ICssValue TextDecorationLineDecl = new Constant < Object > ( CssKeywords . None , null ) ;
118
118
public static readonly ICssValue TextDecorationStyleDecl = new Constant < LineStyle > ( CssKeywords . Solid , LineStyle . Solid ) ;
119
119
public static readonly ICssValue TextDecorationColorDecl = new Constant < Color > ( CssKeywords . CurrentColor , Color . CurrentColor ) ;
120
+ public static readonly ICssValue TextAnchorDecl = new Constant < TextAnchor > ( CssKeywords . Start , TextAnchor . Start ) ;
120
121
public static readonly ICssValue ListStyleTypeDecl = new Constant < ListStyle > ( CssKeywords . Disc , ListStyle . Disc ) ;
121
122
public static readonly ICssValue ListStylePositionDecl = new Constant < ListPosition > ( CssKeywords . Outside , ListPosition . Outside ) ;
122
123
public static readonly ICssValue ListStyleImageDecl = new Constant < Object > ( CssKeywords . None , null ) ;
@@ -132,14 +133,20 @@ static class InitialValues
132
133
public static readonly ICssValue ColumnGapDecl = new Constant < Length > ( CssKeywords . Normal , Length . Normal ) ;
133
134
public static readonly ICssValue RowGapDecl = new Constant < Length > ( CssKeywords . Normal , Length . Normal ) ;
134
135
public static readonly ICssValue PerspectiveDecl = new Constant < Object > ( CssKeywords . None , null ) ;
136
+ public static readonly ICssValue PerspectiveOriginDecl = Point . Center ;
135
137
public static readonly ICssValue PositionDecl = new Constant < PositionMode > ( CssKeywords . Inline , PositionMode . Static ) ;
136
138
public static readonly ICssValue TransformDecl = new Constant < Object > ( CssKeywords . None , null ) ;
137
139
public static readonly ICssValue TransformStyleDecl = new Constant < Boolean > ( CssKeywords . Flat , true ) ;
140
+ public static readonly ICssValue TransformOriginDecl = Point . Center ;
138
141
public static readonly ICssValue TableLayoutDecl = new Constant < Boolean > ( CssKeywords . Auto , false ) ;
139
142
public static readonly ICssValue ClearDecl = new Constant < ClearMode > ( CssKeywords . None , ClearMode . None ) ;
140
143
public static readonly ICssValue ClipDecl = new Constant < Length > ( CssKeywords . Auto , Length . Auto ) ;
141
- public static readonly ICssValue StrokeOpacityDecl = new Length ( 1 , Length . Unit . None ) ;
144
+ public static readonly ICssValue StrokeOpacityDecl = new Length ( 1.0 , Length . Unit . None ) ;
142
145
public static readonly ICssValue StrokeLinecapDecl = new Constant < StrokeLinecap > ( CssKeywords . Butt , StrokeLinecap . Butt ) ;
146
+ public static readonly ICssValue StrokeLinejoinDecl = new Constant < StrokeLinejoin > ( CssKeywords . Miter , StrokeLinejoin . Miter ) ;
147
+ public static readonly ICssValue StrokeDashoffsetDecl = Length . Zero ;
148
+ public static readonly ICssValue StrokeDasharrayDecl = new Constant < Object > ( CssKeywords . None , null ) ;
149
+ public static readonly ICssValue StrokeWidthDecl = new Length ( 1.0 , Length . Unit . Px ) ;
143
150
public static readonly ICssValue RubyPositionDecl = new Constant < RubyPosition > ( CssKeywords . Over , RubyPosition . Over ) ;
144
151
public static readonly ICssValue RubyOverhangDecl = new Constant < RubyOverhangMode > ( CssKeywords . None , RubyOverhangMode . None ) ;
145
152
public static readonly ICssValue RubyAlignDecl = new Constant < RubyAlignment > ( CssKeywords . SpaceAround , RubyAlignment . SpaceAround ) ;
@@ -158,18 +165,33 @@ static class InitialValues
158
165
public static readonly ICssValue BorderImageOutsetDecl = Length . Zero ;
159
166
public static readonly ICssValue BorderImageRepeatDecl = new Constant < BorderRepeat > ( CssKeywords . Stretch , BorderRepeat . Stretch ) ;
160
167
public static readonly ICssValue BorderCollapseDecl = new Constant < Boolean > ( CssKeywords . Separate , true ) ;
168
+ public static readonly ICssValue BorderRadiusDecl = Length . Zero ;
161
169
public static readonly ICssValue AlignSelfDecl = new Constant < FlexContentMode > ( CssKeywords . Auto , FlexContentMode . Auto ) ;
162
170
public static readonly ICssValue AlignItemsDecl = new Constant < FlexContentMode > ( CssKeywords . Normal , FlexContentMode . Stretch ) ;
163
171
public static readonly ICssValue AlignContentDecl = new Constant < FlexContentMode > ( CssKeywords . Normal , FlexContentMode . Stretch ) ;
164
172
public static readonly ICssValue JustifyContentDecl = new Constant < Object > ( CssKeywords . Normal , null ) ;
165
173
public static readonly ICssValue JustifyItemsDecl = new Constant < Object > ( CssKeywords . Legacy , null ) ;
166
174
public static readonly ICssValue JustifySelfDecl = new Constant < FlexContentMode > ( CssKeywords . Auto , FlexContentMode . Auto ) ;
167
175
public static readonly ICssValue UnicodeBidiDecl = new Constant < UnicodeMode > ( CssKeywords . Normal , UnicodeMode . Normal ) ;
176
+ public static readonly ICssValue WordWrapDecl = new Constant < OverflowWrap > ( CssKeywords . Normal , OverflowWrap . Normal ) ;
168
177
public static readonly ICssValue WidowsDecl = new Length ( 2 , Length . Unit . None ) ;
169
178
public static readonly ICssValue OrphansDecl = new Length ( 2 , Length . Unit . None ) ;
170
179
public static readonly ICssValue OrderDecl = new Length ( 0 , Length . Unit . None ) ;
171
180
public static readonly ICssValue ObjectFitDecl = new Constant < ObjectFitting > ( CssKeywords . Fill , ObjectFitting . Fill ) ;
181
+ public static readonly ICssValue ObjectPositionDecl = Point . Center ;
172
182
public static readonly ICssValue WhiteSpaceDecl = new Constant < Whitespace > ( CssKeywords . Normal , Whitespace . Normal ) ;
173
183
public static readonly ICssValue ZIndexDecl = new Constant < Length > ( CssKeywords . Auto , Length . Auto ) ;
184
+ public static readonly ICssValue WidthDecl = Length . Auto ;
185
+ public static readonly ICssValue HeightDecl = Length . Auto ;
186
+ public static readonly ICssValue ScrollbarTrackColorDecl = CssColors . GetColor ( "scrollbar" ) ;
187
+ public static readonly ICssValue ScrollbarShadowColorDecl = CssColors . GetColor ( "threeddarkshadow" ) ;
188
+ public static readonly ICssValue ScrollbarHighlightColorDecl = CssColors . GetColor ( "threedhighlight" ) ;
189
+ public static readonly ICssValue ScrollbarFaceColorDecl = CssColors . GetColor ( "threedface" ) ;
190
+ public static readonly ICssValue ScrollbarDarkshadowColorDecl = CssColors . GetColor ( "threeddarkshadow" ) ;
191
+ public static readonly ICssValue ScrollbarBaseColorDecl = Color . Transparent ;
192
+ public static readonly ICssValue ScrollbarArrowColorDecl = CssColors . GetColor ( "buttontext" ) ;
193
+ public static readonly ICssValue Scrollbar3dLightColorDecl = Color . White ;
194
+ public static readonly ICssValue LetterSpacingDecl = Length . Normal ;
195
+ public static readonly ICssValue FontSizeAdjustDecl = new Length ( 1.0 , Length . Unit . Em ) ;
174
196
}
175
197
}
0 commit comments