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

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

Issue 140253004: Implement 'scroll-behavior' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 padding-left type_name=Length, initial=initialPadding, converter=convertLength 98 padding-left type_name=Length, initial=initialPadding, converter=convertLength
99 padding-right type_name=Length, initial=initialPadding, converter=convertLength 99 padding-right type_name=Length, initial=initialPadding, converter=convertLength
100 padding-top type_name=Length, initial=initialPadding, converter=convertLength 100 padding-top type_name=Length, initial=initialPadding, converter=convertLength
101 page-break-after type_name=EPageBreak, initial=initialPageBreak 101 page-break-after type_name=EPageBreak, initial=initialPageBreak
102 page-break-before type_name=EPageBreak, initial=initialPageBreak 102 page-break-before type_name=EPageBreak, initial=initialPageBreak
103 page-break-inside type_name=EPageBreak, initial=initialPageBreak 103 page-break-inside type_name=EPageBreak, initial=initialPageBreak
104 pointer-events 104 pointer-events
105 position 105 position
106 resize custom_value 106 resize custom_value
107 right type_name=Length, initial=initialOffset, converter=convertLengthOrAuto 107 right type_name=Length, initial=initialOffset, converter=convertLengthOrAuto
108 scroll-behavior type_name=ScrollBehavior, initial=initialScrollBehavior
Julien - ping for review 2014/01/22 16:24:35 Do we really need initial part? (I thought it woul
ajuma 2014/01/22 19:50:20 You're right, this part wasn't needed. Removed.
108 shape-image-threshold type_name=float 109 shape-image-threshold type_name=float
109 shape-inside type_name=ShapeValue*, custom_value 110 shape-inside type_name=ShapeValue*, custom_value
110 shape-margin type_name=Length, converter=convertLength 111 shape-margin type_name=Length, converter=convertLength
111 shape-outside type_name=ShapeValue*, custom_value 112 shape-outside type_name=ShapeValue*, custom_value
112 shape-padding type_name=Length, converter=convertLength 113 shape-padding type_name=Length, converter=convertLength
113 size custom_all 114 size custom_all
114 speak 115 speak
115 table-layout 116 table-layout
116 tab-size type_name=unsigned 117 tab-size type_name=unsigned
117 text-align custom_value 118 text-align custom_value
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 stop-opacity svg, type_name=float, converter=convertNumberOrPercentage 274 stop-opacity svg, type_name=float, converter=convertNumberOrPercentage
274 stroke-dashoffset svg, type_name=SVGLength, name_for_methods=StrokeDashOffset, c onverter=convertSVGLength 275 stroke-dashoffset svg, type_name=SVGLength, name_for_methods=StrokeDashOffset, c onverter=convertSVGLength
275 stroke-linecap svg, type_name=LineCap, name_for_methods=CapStyle 276 stroke-linecap svg, type_name=LineCap, name_for_methods=CapStyle
276 stroke-linejoin svg, type_name=LineJoin, name_for_methods=JoinStyle 277 stroke-linejoin svg, type_name=LineJoin, name_for_methods=JoinStyle
277 stroke-miterlimit svg, type_name=float, name_for_methods=StrokeMiterLimit 278 stroke-miterlimit svg, type_name=float, name_for_methods=StrokeMiterLimit
278 stroke-opacity svg, type_name=float, converter=convertNumberOrPercentage 279 stroke-opacity svg, type_name=float, converter=convertNumberOrPercentage
279 stroke-width svg, type_name=SVGLength, converter=convertSVGLength 280 stroke-width svg, type_name=SVGLength, converter=convertSVGLength
280 text-anchor svg 281 text-anchor svg
281 vector-effect svg 282 vector-effect svg
282 writing-mode svg, type_name=SVGWritingMode 283 writing-mode svg, type_name=SVGWritingMode
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698