1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/style/nsComputedDOMStylePropertyList.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,314 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +/* 1.10 + * a list of the CSS properties that are exposed on nsComputedDOMStyle 1.11 + * objects, for preprocessing 1.12 + */ 1.13 + 1.14 +/****** 1.15 + 1.16 + This file contains the list of CSS properties that are exposed 1.17 + on nsComputedDOMStyle objects. It is designed to be included in 1.18 + nsComputedDOMStyle.cpp to generate the "computed style map", a 1.19 + table of property IDs and corresponding functions on nsComputedDOMStyle 1.20 + that return the CSSValue representing that property's computed value. 1.21 + 1.22 + The COMPUTED_STYLE_PROP macro is defined for each such property. 1.23 + Its arguments are: 1.24 + 1.25 + -. 'id' the nsCSSProperty ID, without the leading "nsCSSProperty_". 1.26 + 1.27 + -. 'method' the nsComputedDOMStyle method name that returns the 1.28 + CSSValue representing that property's computed value, without the leading 1.29 + "Do". 1.30 + 1.31 + ******/ 1.32 + 1.33 +/* ******************************************************************* *\ 1.34 + * Properties below are listed in alphabetical order. * 1.35 + * Please keep them that way. * 1.36 + * * 1.37 + * Properties commented out with // are not yet implemented * 1.38 + * Properties commented out with //// are shorthands and not queryable * 1.39 +\* ******************************************************************* */ 1.40 + 1.41 +/* ***************************** *\ 1.42 + * Implementations of CSS styles * 1.43 +\* ***************************** */ 1.44 + 1.45 +COMPUTED_STYLE_PROP(align_content, AlignContent) 1.46 +COMPUTED_STYLE_PROP(align_items, AlignItems) 1.47 +COMPUTED_STYLE_PROP(align_self, AlignSelf) 1.48 +//// COMPUTED_STYLE_PROP(animation, Animation) 1.49 +COMPUTED_STYLE_PROP(animation_delay, AnimationDelay) 1.50 +COMPUTED_STYLE_PROP(animation_direction, AnimationDirection) 1.51 +COMPUTED_STYLE_PROP(animation_duration, AnimationDuration) 1.52 +COMPUTED_STYLE_PROP(animation_fill_mode, AnimationFillMode) 1.53 +COMPUTED_STYLE_PROP(animation_iteration_count, AnimationIterationCount) 1.54 +COMPUTED_STYLE_PROP(animation_name, AnimationName) 1.55 +COMPUTED_STYLE_PROP(animation_play_state, AnimationPlayState) 1.56 +COMPUTED_STYLE_PROP(animation_timing_function, AnimationTimingFunction) 1.57 +COMPUTED_STYLE_PROP(backface_visibility, BackfaceVisibility) 1.58 +//// COMPUTED_STYLE_PROP(background, Background) 1.59 +COMPUTED_STYLE_PROP(background_attachment, BackgroundAttachment) 1.60 +COMPUTED_STYLE_PROP(background_blend_mode, BackgroundBlendMode) 1.61 +COMPUTED_STYLE_PROP(background_clip, BackgroundClip) 1.62 +COMPUTED_STYLE_PROP(background_color, BackgroundColor) 1.63 +COMPUTED_STYLE_PROP(background_image, BackgroundImage) 1.64 +COMPUTED_STYLE_PROP(background_origin, BackgroundOrigin) 1.65 +COMPUTED_STYLE_PROP(background_position, BackgroundPosition) 1.66 +COMPUTED_STYLE_PROP(background_repeat, BackgroundRepeat) 1.67 +COMPUTED_STYLE_PROP(background_size, BackgroundSize) 1.68 +//// COMPUTED_STYLE_PROP(border, Border) 1.69 +//// COMPUTED_STYLE_PROP(border_bottom, BorderBottom) 1.70 +COMPUTED_STYLE_PROP(border_bottom_color, BorderBottomColor) 1.71 +COMPUTED_STYLE_PROP(border_bottom_left_radius, BorderBottomLeftRadius) 1.72 +COMPUTED_STYLE_PROP(border_bottom_right_radius, BorderBottomRightRadius) 1.73 +COMPUTED_STYLE_PROP(border_bottom_style, BorderBottomStyle) 1.74 +COMPUTED_STYLE_PROP(border_bottom_width, BorderBottomWidth) 1.75 +COMPUTED_STYLE_PROP(border_collapse, BorderCollapse) 1.76 +//// COMPUTED_STYLE_PROP(border_color, BorderColor) 1.77 +//// COMPUTED_STYLE_PROP(border_image, BorderImage) 1.78 +COMPUTED_STYLE_PROP(border_image_outset, BorderImageOutset) 1.79 +COMPUTED_STYLE_PROP(border_image_repeat, BorderImageRepeat) 1.80 +COMPUTED_STYLE_PROP(border_image_slice, BorderImageSlice) 1.81 +COMPUTED_STYLE_PROP(border_image_source, BorderImageSource) 1.82 +COMPUTED_STYLE_PROP(border_image_width, BorderImageWidth) 1.83 +//// COMPUTED_STYLE_PROP(border_left, BorderLeft) 1.84 +COMPUTED_STYLE_PROP(border_left_color, BorderLeftColor) 1.85 +COMPUTED_STYLE_PROP(border_left_style, BorderLeftStyle) 1.86 +COMPUTED_STYLE_PROP(border_left_width, BorderLeftWidth) 1.87 +//// COMPUTED_STYLE_PROP(border_right, BorderRight) 1.88 +COMPUTED_STYLE_PROP(border_right_color, BorderRightColor) 1.89 +COMPUTED_STYLE_PROP(border_right_style, BorderRightStyle) 1.90 +COMPUTED_STYLE_PROP(border_right_width, BorderRightWidth) 1.91 +COMPUTED_STYLE_PROP(border_spacing, BorderSpacing) 1.92 +//// COMPUTED_STYLE_PROP(border_style, BorderStyle) 1.93 +//// COMPUTED_STYLE_PROP(border_top, BorderTop) 1.94 +COMPUTED_STYLE_PROP(border_top_color, BorderTopColor) 1.95 +COMPUTED_STYLE_PROP(border_top_left_radius, BorderTopLeftRadius) 1.96 +COMPUTED_STYLE_PROP(border_top_right_radius, BorderTopRightRadius) 1.97 +COMPUTED_STYLE_PROP(border_top_style, BorderTopStyle) 1.98 +COMPUTED_STYLE_PROP(border_top_width, BorderTopWidth) 1.99 +//// COMPUTED_STYLE_PROP(border_width, BorderWidth) 1.100 +COMPUTED_STYLE_PROP(bottom, Bottom) 1.101 +COMPUTED_STYLE_PROP(box_shadow, BoxShadow) 1.102 +COMPUTED_STYLE_PROP(box_sizing, BoxSizing) 1.103 +COMPUTED_STYLE_PROP(caption_side, CaptionSide) 1.104 +COMPUTED_STYLE_PROP(clear, Clear) 1.105 +COMPUTED_STYLE_PROP(clip, Clip) 1.106 +COMPUTED_STYLE_PROP(color, Color) 1.107 +COMPUTED_STYLE_PROP(content, Content) 1.108 +COMPUTED_STYLE_PROP(counter_increment, CounterIncrement) 1.109 +COMPUTED_STYLE_PROP(counter_reset, CounterReset) 1.110 +COMPUTED_STYLE_PROP(cursor, Cursor) 1.111 +COMPUTED_STYLE_PROP(direction, Direction) 1.112 +COMPUTED_STYLE_PROP(display, Display) 1.113 +COMPUTED_STYLE_PROP(empty_cells, EmptyCells) 1.114 +COMPUTED_STYLE_PROP(flex_basis, FlexBasis) 1.115 +COMPUTED_STYLE_PROP(flex_direction, FlexDirection) 1.116 +COMPUTED_STYLE_PROP(flex_grow, FlexGrow) 1.117 +COMPUTED_STYLE_PROP(flex_shrink, FlexShrink) 1.118 +COMPUTED_STYLE_PROP(flex_wrap, FlexWrap) 1.119 +COMPUTED_STYLE_PROP(float, Float) 1.120 +//// COMPUTED_STYLE_PROP(font, Font) 1.121 +COMPUTED_STYLE_PROP(font_family, FontFamily) 1.122 +COMPUTED_STYLE_PROP(font_kerning, FontKerning) 1.123 +COMPUTED_STYLE_PROP(font_size, FontSize) 1.124 +COMPUTED_STYLE_PROP(font_size_adjust, FontSizeAdjust) 1.125 +COMPUTED_STYLE_PROP(font_stretch, FontStretch) 1.126 +COMPUTED_STYLE_PROP(font_style, FontStyle) 1.127 +COMPUTED_STYLE_PROP(font_synthesis, FontSynthesis) 1.128 +COMPUTED_STYLE_PROP(font_variant, FontVariant) 1.129 +COMPUTED_STYLE_PROP(font_variant_alternates, FontVariantAlternates) 1.130 +COMPUTED_STYLE_PROP(font_variant_caps, FontVariantCaps) 1.131 +COMPUTED_STYLE_PROP(font_variant_east_asian, FontVariantEastAsian) 1.132 +COMPUTED_STYLE_PROP(font_variant_ligatures, FontVariantLigatures) 1.133 +COMPUTED_STYLE_PROP(font_variant_numeric, FontVariantNumeric) 1.134 +COMPUTED_STYLE_PROP(font_variant_position, FontVariantPosition) 1.135 +COMPUTED_STYLE_PROP(font_weight, FontWeight) 1.136 +COMPUTED_STYLE_PROP(grid_auto_columns, GridAutoColumns) 1.137 +COMPUTED_STYLE_PROP(grid_auto_flow, GridAutoFlow) 1.138 +COMPUTED_STYLE_PROP(grid_auto_position, GridAutoPosition) 1.139 +COMPUTED_STYLE_PROP(grid_auto_rows, GridAutoRows) 1.140 +COMPUTED_STYLE_PROP(grid_column_end, GridColumnEnd) 1.141 +COMPUTED_STYLE_PROP(grid_column_start, GridColumnStart) 1.142 +COMPUTED_STYLE_PROP(grid_row_end, GridRowEnd) 1.143 +COMPUTED_STYLE_PROP(grid_row_start, GridRowStart) 1.144 +COMPUTED_STYLE_PROP(grid_template_areas, GridTemplateAreas) 1.145 +COMPUTED_STYLE_PROP(grid_template_columns, GridTemplateColumns) 1.146 +COMPUTED_STYLE_PROP(grid_template_rows, GridTemplateRows) 1.147 +COMPUTED_STYLE_PROP(height, Height) 1.148 +COMPUTED_STYLE_PROP(image_orientation, ImageOrientation) 1.149 +COMPUTED_STYLE_PROP(ime_mode, IMEMode) 1.150 +COMPUTED_STYLE_PROP(justify_content, JustifyContent) 1.151 +COMPUTED_STYLE_PROP(left, Left) 1.152 +COMPUTED_STYLE_PROP(letter_spacing, LetterSpacing) 1.153 +COMPUTED_STYLE_PROP(line_height, LineHeight) 1.154 +//// COMPUTED_STYLE_PROP(list_style, ListStyle) 1.155 +COMPUTED_STYLE_PROP(list_style_image, ListStyleImage) 1.156 +COMPUTED_STYLE_PROP(list_style_position, ListStylePosition) 1.157 +COMPUTED_STYLE_PROP(list_style_type, ListStyleType) 1.158 +//// COMPUTED_STYLE_PROP(margin, Margin) 1.159 +COMPUTED_STYLE_PROP(margin_bottom, MarginBottomWidth) 1.160 +COMPUTED_STYLE_PROP(margin_left, MarginLeftWidth) 1.161 +COMPUTED_STYLE_PROP(margin_right, MarginRightWidth) 1.162 +COMPUTED_STYLE_PROP(margin_top, MarginTopWidth) 1.163 +COMPUTED_STYLE_PROP(marker_offset, MarkerOffset) 1.164 +// COMPUTED_STYLE_PROP(marks, Marks) 1.165 +COMPUTED_STYLE_PROP(max_height, MaxHeight) 1.166 +COMPUTED_STYLE_PROP(max_width, MaxWidth) 1.167 +COMPUTED_STYLE_PROP(min_height, MinHeight) 1.168 +COMPUTED_STYLE_PROP(min_width, MinWidth) 1.169 +COMPUTED_STYLE_PROP(mix_blend_mode, MixBlendMode) 1.170 +COMPUTED_STYLE_PROP(opacity, Opacity) 1.171 +// COMPUTED_STYLE_PROP(orphans, Orphans) 1.172 +//// COMPUTED_STYLE_PROP(outline, Outline) 1.173 +COMPUTED_STYLE_PROP(order, Order) 1.174 +COMPUTED_STYLE_PROP(outline_color, OutlineColor) 1.175 +COMPUTED_STYLE_PROP(outline_offset, OutlineOffset) 1.176 +COMPUTED_STYLE_PROP(outline_style, OutlineStyle) 1.177 +COMPUTED_STYLE_PROP(outline_width, OutlineWidth) 1.178 +COMPUTED_STYLE_PROP(overflow, Overflow) 1.179 +COMPUTED_STYLE_PROP(overflow_clip_box, OverflowClipBox) 1.180 +COMPUTED_STYLE_PROP(overflow_x, OverflowX) 1.181 +COMPUTED_STYLE_PROP(overflow_y, OverflowY) 1.182 +//// COMPUTED_STYLE_PROP(padding, Padding) 1.183 +COMPUTED_STYLE_PROP(padding_bottom, PaddingBottom) 1.184 +COMPUTED_STYLE_PROP(padding_left, PaddingLeft) 1.185 +COMPUTED_STYLE_PROP(padding_right, PaddingRight) 1.186 +COMPUTED_STYLE_PROP(padding_top, PaddingTop) 1.187 +// COMPUTED_STYLE_PROP(page, Page) 1.188 +COMPUTED_STYLE_PROP(page_break_after, PageBreakAfter) 1.189 +COMPUTED_STYLE_PROP(page_break_before, PageBreakBefore) 1.190 +COMPUTED_STYLE_PROP(page_break_inside, PageBreakInside) 1.191 +COMPUTED_STYLE_PROP(perspective, Perspective) 1.192 +COMPUTED_STYLE_PROP(perspective_origin, PerspectiveOrigin) 1.193 +COMPUTED_STYLE_PROP(pointer_events, PointerEvents) 1.194 +COMPUTED_STYLE_PROP(position, Position) 1.195 +COMPUTED_STYLE_PROP(quotes, Quotes) 1.196 +COMPUTED_STYLE_PROP(resize, Resize) 1.197 +COMPUTED_STYLE_PROP(right, Right) 1.198 +//// COMPUTED_STYLE_PROP(size, Size) 1.199 +COMPUTED_STYLE_PROP(table_layout, TableLayout) 1.200 +COMPUTED_STYLE_PROP(text_align, TextAlign) 1.201 +COMPUTED_STYLE_PROP(text_combine_upright, TextCombineUpright) 1.202 +COMPUTED_STYLE_PROP(text_decoration, TextDecoration) 1.203 +COMPUTED_STYLE_PROP(text_indent, TextIndent) 1.204 +COMPUTED_STYLE_PROP(text_orientation, TextOrientation) 1.205 +COMPUTED_STYLE_PROP(text_overflow, TextOverflow) 1.206 +COMPUTED_STYLE_PROP(text_shadow, TextShadow) 1.207 +COMPUTED_STYLE_PROP(text_transform, TextTransform) 1.208 +COMPUTED_STYLE_PROP(top, Top) 1.209 +COMPUTED_STYLE_PROP(touch_action, TouchAction) 1.210 +COMPUTED_STYLE_PROP(transform, Transform) 1.211 +COMPUTED_STYLE_PROP(transform_origin, TransformOrigin) 1.212 +COMPUTED_STYLE_PROP(transform_style, TransformStyle) 1.213 +//// COMPUTED_STYLE_PROP(transition, Transition) 1.214 +COMPUTED_STYLE_PROP(transition_delay, TransitionDelay) 1.215 +COMPUTED_STYLE_PROP(transition_duration, TransitionDuration) 1.216 +COMPUTED_STYLE_PROP(transition_property, TransitionProperty) 1.217 +COMPUTED_STYLE_PROP(transition_timing_function, TransitionTimingFunction) 1.218 +COMPUTED_STYLE_PROP(unicode_bidi, UnicodeBidi) 1.219 +COMPUTED_STYLE_PROP(vertical_align, VerticalAlign) 1.220 +COMPUTED_STYLE_PROP(visibility, Visibility) 1.221 +COMPUTED_STYLE_PROP(white_space, WhiteSpace) 1.222 +// COMPUTED_STYLE_PROP(widows, Widows) 1.223 +COMPUTED_STYLE_PROP(width, Width) 1.224 +COMPUTED_STYLE_PROP(will_change, WillChange) 1.225 +COMPUTED_STYLE_PROP(word_break, WordBreak) 1.226 +COMPUTED_STYLE_PROP(word_spacing, WordSpacing) 1.227 +COMPUTED_STYLE_PROP(word_wrap, WordWrap) 1.228 +COMPUTED_STYLE_PROP(writing_mode, WritingMode) 1.229 +COMPUTED_STYLE_PROP(z_index, ZIndex) 1.230 + 1.231 +/* ******************************* *\ 1.232 + * Implementations of -moz- styles * 1.233 +\* ******************************* */ 1.234 + 1.235 +COMPUTED_STYLE_PROP(appearance, Appearance) 1.236 +COMPUTED_STYLE_PROP(_moz_background_inline_policy, BackgroundInlinePolicy) 1.237 +COMPUTED_STYLE_PROP(binding, Binding) 1.238 +COMPUTED_STYLE_PROP(border_bottom_colors, BorderBottomColors) 1.239 +COMPUTED_STYLE_PROP(border_left_colors, BorderLeftColors) 1.240 +COMPUTED_STYLE_PROP(border_right_colors, BorderRightColors) 1.241 +COMPUTED_STYLE_PROP(border_top_colors, BorderTopColors) 1.242 +COMPUTED_STYLE_PROP(box_align, BoxAlign) 1.243 +COMPUTED_STYLE_PROP(box_direction, BoxDirection) 1.244 +COMPUTED_STYLE_PROP(box_flex, BoxFlex) 1.245 +COMPUTED_STYLE_PROP(box_ordinal_group, BoxOrdinalGroup) 1.246 +COMPUTED_STYLE_PROP(box_orient, BoxOrient) 1.247 +COMPUTED_STYLE_PROP(box_pack, BoxPack) 1.248 +COMPUTED_STYLE_PROP(_moz_column_count, ColumnCount) 1.249 +COMPUTED_STYLE_PROP(_moz_column_fill, ColumnFill) 1.250 +COMPUTED_STYLE_PROP(_moz_column_gap, ColumnGap) 1.251 +//// COMPUTED_STYLE_PROP(_moz_column_rule, ColumnRule) 1.252 +COMPUTED_STYLE_PROP(_moz_column_rule_color, ColumnRuleColor) 1.253 +COMPUTED_STYLE_PROP(_moz_column_rule_style, ColumnRuleStyle) 1.254 +COMPUTED_STYLE_PROP(_moz_column_rule_width, ColumnRuleWidth) 1.255 +COMPUTED_STYLE_PROP(_moz_column_width, ColumnWidth) 1.256 +COMPUTED_STYLE_PROP(float_edge, FloatEdge) 1.257 +COMPUTED_STYLE_PROP(font_feature_settings, FontFeatureSettings) 1.258 +COMPUTED_STYLE_PROP(font_language_override, FontLanguageOverride) 1.259 +COMPUTED_STYLE_PROP(force_broken_image_icon, ForceBrokenImageIcon) 1.260 +COMPUTED_STYLE_PROP(hyphens, Hyphens) 1.261 +COMPUTED_STYLE_PROP(image_region, ImageRegion) 1.262 +COMPUTED_STYLE_PROP(orient, Orient) 1.263 +COMPUTED_STYLE_PROP(osx_font_smoothing, OSXFontSmoothing) 1.264 +COMPUTED_STYLE_PROP(_moz_outline_radius_bottomLeft, OutlineRadiusBottomLeft) 1.265 +COMPUTED_STYLE_PROP(_moz_outline_radius_bottomRight,OutlineRadiusBottomRight) 1.266 +COMPUTED_STYLE_PROP(_moz_outline_radius_topLeft, OutlineRadiusTopLeft) 1.267 +COMPUTED_STYLE_PROP(_moz_outline_radius_topRight, OutlineRadiusTopRight) 1.268 +COMPUTED_STYLE_PROP(stack_sizing, StackSizing) 1.269 +COMPUTED_STYLE_PROP(_moz_tab_size, TabSize) 1.270 +COMPUTED_STYLE_PROP(text_align_last, TextAlignLast) 1.271 +COMPUTED_STYLE_PROP(text_decoration_color, TextDecorationColor) 1.272 +COMPUTED_STYLE_PROP(text_decoration_line, TextDecorationLine) 1.273 +COMPUTED_STYLE_PROP(text_decoration_style, TextDecorationStyle) 1.274 +COMPUTED_STYLE_PROP(text_size_adjust, TextSizeAdjust) 1.275 +COMPUTED_STYLE_PROP(user_focus, UserFocus) 1.276 +COMPUTED_STYLE_PROP(user_input, UserInput) 1.277 +COMPUTED_STYLE_PROP(user_modify, UserModify) 1.278 +COMPUTED_STYLE_PROP(user_select, UserSelect) 1.279 +COMPUTED_STYLE_PROP(_moz_window_shadow, WindowShadow) 1.280 + 1.281 +/* ***************************** *\ 1.282 + * Implementations of SVG styles * 1.283 +\* ***************************** */ 1.284 + 1.285 +COMPUTED_STYLE_PROP(clip_path, ClipPath) 1.286 +COMPUTED_STYLE_PROP(clip_rule, ClipRule) 1.287 +COMPUTED_STYLE_PROP(color_interpolation, ColorInterpolation) 1.288 +COMPUTED_STYLE_PROP(color_interpolation_filters, ColorInterpolationFilters) 1.289 +COMPUTED_STYLE_PROP(dominant_baseline, DominantBaseline) 1.290 +COMPUTED_STYLE_PROP(fill, Fill) 1.291 +COMPUTED_STYLE_PROP(fill_opacity, FillOpacity) 1.292 +COMPUTED_STYLE_PROP(fill_rule, FillRule) 1.293 +COMPUTED_STYLE_PROP(filter, Filter) 1.294 +COMPUTED_STYLE_PROP(flood_color, FloodColor) 1.295 +COMPUTED_STYLE_PROP(flood_opacity, FloodOpacity) 1.296 +COMPUTED_STYLE_PROP(image_rendering, ImageRendering) 1.297 +COMPUTED_STYLE_PROP(lighting_color, LightingColor) 1.298 +COMPUTED_STYLE_PROP(marker_end, MarkerEnd) 1.299 +COMPUTED_STYLE_PROP(marker_mid, MarkerMid) 1.300 +COMPUTED_STYLE_PROP(marker_start, MarkerStart) 1.301 +COMPUTED_STYLE_PROP(mask, Mask) 1.302 +COMPUTED_STYLE_PROP(mask_type, MaskType) 1.303 +COMPUTED_STYLE_PROP(paint_order, PaintOrder) 1.304 +COMPUTED_STYLE_PROP(shape_rendering, ShapeRendering) 1.305 +COMPUTED_STYLE_PROP(stop_color, StopColor) 1.306 +COMPUTED_STYLE_PROP(stop_opacity, StopOpacity) 1.307 +COMPUTED_STYLE_PROP(stroke, Stroke) 1.308 +COMPUTED_STYLE_PROP(stroke_dasharray, StrokeDasharray) 1.309 +COMPUTED_STYLE_PROP(stroke_dashoffset, StrokeDashoffset) 1.310 +COMPUTED_STYLE_PROP(stroke_linecap, StrokeLinecap) 1.311 +COMPUTED_STYLE_PROP(stroke_linejoin, StrokeLinejoin) 1.312 +COMPUTED_STYLE_PROP(stroke_miterlimit, StrokeMiterlimit) 1.313 +COMPUTED_STYLE_PROP(stroke_opacity, StrokeOpacity) 1.314 +COMPUTED_STYLE_PROP(stroke_width, StrokeWidth) 1.315 +COMPUTED_STYLE_PROP(text_anchor, TextAnchor) 1.316 +COMPUTED_STYLE_PROP(text_rendering, TextRendering) 1.317 +COMPUTED_STYLE_PROP(vector_effect, VectorEffect)