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

Side by Side Diff: Source/core/css/CSSProperties.in

Issue 19041005: Introduce css3TextEnabled instead of CSS3_TEXT. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 7 years, 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/css/CSSPrimitiveValueMappings.h ('k') | Source/core/css/CSSProperty.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // FIXME: When we have all the properties using the new StyleBuilder, we 1 // FIXME: When we have all the properties using the new StyleBuilder, we
2 // should use this for make_css_property_names.py 2 // should use this for make_css_property_names.py
3 // Note: Mandatory blank line to skip parameter parsing phase 3 // Note: Mandatory blank line to skip parameter parsing phase
4 4
5 align-content 5 align-content
6 align-items 6 align-items
7 align-self type_name=EAlignItems 7 align-self type_name=EAlignItems
8 background-attachment custom_all 8 background-attachment custom_all
9 background-blend-mode custom_all 9 background-blend-mode custom_all
10 background-clip custom_all 10 background-clip custom_all
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 padding-top apply_type=length, initial=initialPadding 75 padding-top apply_type=length, initial=initialPadding
76 page-break-after type_name=EPageBreak, initial=initialPageBreak 76 page-break-after type_name=EPageBreak, initial=initialPageBreak
77 page-break-before type_name=EPageBreak, initial=initialPageBreak 77 page-break-before type_name=EPageBreak, initial=initialPageBreak
78 page-break-inside type_name=EPageBreak, initial=initialPageBreak 78 page-break-inside type_name=EPageBreak, initial=initialPageBreak
79 pointer-events 79 pointer-events
80 position 80 position
81 right apply_type=length, initial=initialOffset, use_auto 81 right apply_type=length, initial=initialOffset, use_auto
82 speak 82 speak
83 table-layout 83 table-layout
84 tab-size type_name=unsigned 84 tab-size type_name=unsigned
85 text-align-last type_name=TextAlignLast
85 text-decoration-color custom_all 86 text-decoration-color custom_all
86 text-decoration-style type_name=TextDecorationStyle 87 text-decoration-style type_name=TextDecorationStyle
87 text-overflow type_name=TextOverflow 88 text-overflow type_name=TextOverflow
88 text-transform 89 text-transform
89 top apply_type=length, initial=initialOffset, use_auto 90 top apply_type=length, initial=initialOffset, use_auto
90 touch-action type_name=TouchAction, initial=initialTouchAction 91 touch-action type_name=TouchAction, initial=initialTouchAction
91 unicode-bidi 92 unicode-bidi
92 visibility 93 visibility
93 white-space 94 white-space
94 widows type_name=short, custom_all 95 widows type_name=short, custom_all
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 -webkit-perspective-origin-y apply_type=length 176 -webkit-perspective-origin-y apply_type=length
176 -webkit-print-color-adjust type_name=PrintColorAdjust 177 -webkit-print-color-adjust type_name=PrintColorAdjust
177 -webkit-region-break-after type_name=EPageBreak, initial=initialPageBreak 178 -webkit-region-break-after type_name=EPageBreak, initial=initialPageBreak
178 -webkit-region-break-before type_name=EPageBreak, initial=initialPageBreak 179 -webkit-region-break-before type_name=EPageBreak, initial=initialPageBreak
179 -webkit-region-break-inside type_name=EPageBreak, initial=initialPageBreak 180 -webkit-region-break-inside type_name=EPageBreak, initial=initialPageBreak
180 -webkit-region-fragment type_name=RegionFragment 181 -webkit-region-fragment type_name=RegionFragment
181 -webkit-rtl-ordering type_name=Order, getter=rtlOrdering, setter=setRTLOrdering, initial=initialRTLOrdering 182 -webkit-rtl-ordering type_name=Order, getter=rtlOrdering, setter=setRTLOrdering, initial=initialRTLOrdering
182 -webkit-ruby-position type_name=RubyPosition 183 -webkit-ruby-position type_name=RubyPosition
183 -webkit-shape-margin apply_type=length 184 -webkit-shape-margin apply_type=length
184 -webkit-shape-padding apply_type=length 185 -webkit-shape-padding apply_type=length
185 -webkit-text-align-last type_name=TextAlignLast, condition=CSS3_TEXT
186 -webkit-text-combine type_name=TextCombine 186 -webkit-text-combine type_name=TextCombine
187 -webkit-text-emphasis-color custom_all 187 -webkit-text-emphasis-color custom_all
188 -webkit-text-emphasis-position type_name=TextEmphasisPosition 188 -webkit-text-emphasis-position type_name=TextEmphasisPosition
189 -webkit-text-fill-color custom_all 189 -webkit-text-fill-color custom_all
190 -webkit-text-security 190 -webkit-text-security
191 -webkit-text-stroke-color custom_all 191 -webkit-text-stroke-color custom_all
192 -webkit-transform-origin-x apply_type=length 192 -webkit-transform-origin-x apply_type=length
193 -webkit-transform-origin-y apply_type=length 193 -webkit-transform-origin-y apply_type=length
194 -webkit-transform-style name_for_methods=TransformStyle3D 194 -webkit-transform-style name_for_methods=TransformStyle3D
195 -webkit-transition-delay custom_all 195 -webkit-transition-delay custom_all
196 -webkit-transition-duration custom_all 196 -webkit-transition-duration custom_all
197 -webkit-transition-property custom_all 197 -webkit-transition-property custom_all
198 -webkit-transition-timing-function custom_all 198 -webkit-transition-timing-function custom_all
199 -webkit-user-drag 199 -webkit-user-drag
200 -webkit-user-modify 200 -webkit-user-modify
201 -webkit-user-select 201 -webkit-user-select
202 -webkit-wrap-flow type_name=WrapFlow 202 -webkit-wrap-flow type_name=WrapFlow
203 -webkit-wrap-through type_name=WrapThrough 203 -webkit-wrap-through type_name=WrapThrough
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValueMappings.h ('k') | Source/core/css/CSSProperty.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698