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

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

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master (fixed the DOS-style line break issue there) Created 6 years, 9 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 background-attachment custom_all 6 background-attachment custom_all
7 background-blend-mode custom_all 7 background-blend-mode custom_all
8 background-clip custom_all 8 background-clip custom_all
9 background-color custom_all 9 background-color custom_all
10 background-image custom_all 10 background-image custom_all
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 -webkit-box-decoration-break 169 -webkit-box-decoration-break
170 -webkit-box-direction 170 -webkit-box-direction
171 -webkit-box-flex-group type_name=unsigned int 171 -webkit-box-flex-group type_name=unsigned int
172 -webkit-box-flex type_name=float 172 -webkit-box-flex type_name=float
173 -webkit-box-lines 173 -webkit-box-lines
174 -webkit-box-ordinal-group type_name=unsigned int 174 -webkit-box-ordinal-group type_name=unsigned int
175 -webkit-box-orient 175 -webkit-box-orient
176 -webkit-box-pack 176 -webkit-box-pack
177 -webkit-box-shadow use_handlers_for=CSSPropertyBoxShadow 177 -webkit-box-shadow use_handlers_for=CSSPropertyBoxShadow
178 -webkit-clip-path custom_value 178 -webkit-clip-path custom_value
179 -webkit-column-axis type_name=ColumnAxis
180 -webkit-column-break-after type_name=EPageBreak, initial=initialPageBreak 179 -webkit-column-break-after type_name=EPageBreak, initial=initialPageBreak
181 -webkit-column-break-before type_name=EPageBreak, initial=initialPageBreak 180 -webkit-column-break-before type_name=EPageBreak, initial=initialPageBreak
182 -webkit-column-break-inside type_name=EPageBreak, initial=initialPageBreak 181 -webkit-column-break-inside type_name=EPageBreak, initial=initialPageBreak
183 -webkit-column-count type_name=unsigned short, custom_all 182 -webkit-column-count type_name=unsigned short, custom_all
184 column-fill type_name=ColumnFill 183 column-fill type_name=ColumnFill
185 -webkit-column-gap type_name=float, custom_all 184 -webkit-column-gap type_name=float, custom_all
186 -webkit-column-progression type_name=ColumnProgression
187 -webkit-column-rule-color custom_all 185 -webkit-column-rule-color custom_all
188 -webkit-column-rule-style type_name=EBorderStyle, initial=initialBorderStyle 186 -webkit-column-rule-style type_name=EBorderStyle, initial=initialBorderStyle
189 -webkit-column-rule-width type_name=unsigned short, converter=convertLineWidth<u nsigned short> 187 -webkit-column-rule-width type_name=unsigned short, converter=convertLineWidth<u nsigned short>
190 -webkit-column-span type_name=ColumnSpan 188 -webkit-column-span type_name=ColumnSpan
191 -webkit-column-width type_name=float, custom_all 189 -webkit-column-width type_name=float, custom_all
192 -webkit-font-smoothing font, type_name=FontSmoothingMode 190 -webkit-font-smoothing font, type_name=FontSmoothingMode
193 -webkit-highlight type_name=AtomicString, converter=convertString<CSSValueNone> 191 -webkit-highlight type_name=AtomicString, converter=convertString<CSSValueNone>
194 -webkit-hyphenate-character type_name=AtomicString, name_for_methods=Hyphenation String, converter=convertString<CSSValueAuto> 192 -webkit-hyphenate-character type_name=AtomicString, name_for_methods=Hyphenation String, converter=convertString<CSSValueAuto>
195 -webkit-line-break type_name=LineBreak 193 -webkit-line-break type_name=LineBreak
196 -webkit-line-clamp type_name=LineClampValue 194 -webkit-line-clamp type_name=LineClampValue
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 stop-opacity svg, type_name=float, converter=convertNumberOrPercentage 266 stop-opacity svg, type_name=float, converter=convertNumberOrPercentage
269 stroke-dashoffset svg, type_name=SVGLength, name_for_methods=StrokeDashOffset, c onverter=convertSVGLength 267 stroke-dashoffset svg, type_name=SVGLength, name_for_methods=StrokeDashOffset, c onverter=convertSVGLength
270 stroke-linecap svg, type_name=LineCap, name_for_methods=CapStyle 268 stroke-linecap svg, type_name=LineCap, name_for_methods=CapStyle
271 stroke-linejoin svg, type_name=LineJoin, name_for_methods=JoinStyle 269 stroke-linejoin svg, type_name=LineJoin, name_for_methods=JoinStyle
272 stroke-miterlimit svg, type_name=float, name_for_methods=StrokeMiterLimit 270 stroke-miterlimit svg, type_name=float, name_for_methods=StrokeMiterLimit
273 stroke-opacity svg, type_name=float, converter=convertNumberOrPercentage 271 stroke-opacity svg, type_name=float, converter=convertNumberOrPercentage
274 stroke-width svg, type_name=SVGLength, converter=convertSVGLength 272 stroke-width svg, type_name=SVGLength, converter=convertSVGLength
275 text-anchor svg 273 text-anchor svg
276 vector-effect svg 274 vector-effect svg
277 writing-mode svg, type_name=SVGWritingMode 275 writing-mode svg, type_name=SVGWritingMode
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