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

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

Issue 1148873005: Parsing CSS properties for scroll snap points (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix comment Created 5 years, 6 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/CSSValueKeywords.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This file specifies all the CSS properties we support and the necessary 1 // This file specifies all the CSS properties we support and the necessary
2 // information for our code generation. The various supported arguments 2 // information for our code generation. The various supported arguments
3 // are described below with example usage 3 // are described below with example usage
4 4
5 5
6 // - alias_for=other-property 6 // - alias_for=other-property
7 // Properties specifying alias_for should be virtually identical to the 7 // Properties specifying alias_for should be virtually identical to the
8 // properties they alias. Minor parsing differences are allowed as long as 8 // properties they alias. Minor parsing differences are allowed as long as
9 // the CSSValues created are of the same format of the aliased property. 9 // the CSSValues created are of the same format of the aliased property.
10 10
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 mask-type svg 218 mask-type svg
219 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 219 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
220 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 220 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
221 min-height animatable, initial=initialMinSize, converter=convertLengthSizing 221 min-height animatable, initial=initialMinSize, converter=convertLengthSizing
222 min-width animatable, initial=initialMinSize, converter=convertLengthSizing 222 min-width animatable, initial=initialMinSize, converter=convertLengthSizing
223 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode 223 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode
224 motion-offset runtime_flag=CSSMotionPath, animatable, converter=convertLength 224 motion-offset runtime_flag=CSSMotionPath, animatable, converter=convertLength
225 motion-path runtime_flag=CSSMotionPath, custom_all 225 motion-path runtime_flag=CSSMotionPath, custom_all
226 motion-rotation runtime_flag=CSSMotionPath, animatable, custom_all 226 motion-rotation runtime_flag=CSSMotionPath, animatable, custom_all
227 object-fit type_name=ObjectFit 227 object-fit type_name=ObjectFit
228 object-position animatable, converter=convertObjectPosition 228 object-position animatable, converter=convertPosition
229 opacity animatable, type_name=float 229 opacity animatable, type_name=float
230 order type_name=int 230 order type_name=int
231 orphans animatable, inherited, type_name=short, custom_all 231 orphans animatable, inherited, type_name=short, custom_all
232 outline-color animatable, custom_all 232 outline-color animatable, custom_all
233 outline-offset animatable, converter=convertComputedLength<int> 233 outline-offset animatable, converter=convertComputedLength<int>
234 outline-style custom_all 234 outline-style custom_all
235 outline-width animatable, converter=convertLineWidth<unsigned short> 235 outline-width animatable, converter=convertLineWidth<unsigned short>
236 overflow-wrap inherited 236 overflow-wrap inherited
237 overflow-x type_name=EOverflow 237 overflow-x type_name=EOverflow
238 overflow-y type_name=EOverflow 238 overflow-y type_name=EOverflow
(...skipping 10 matching lines...) Expand all
249 pointer-events inherited 249 pointer-events inherited
250 position 250 position
251 quotes inherited, converter=convertQuotes 251 quotes inherited, converter=convertQuotes
252 resize custom_value 252 resize custom_value
253 right animatable, initial=initialOffset, converter=convertLengthOrAuto 253 right animatable, initial=initialOffset, converter=convertLengthOrAuto
254 r animatable, svg, converter=convertLength 254 r animatable, svg, converter=convertLength
255 rx animatable, svg, converter=convertLength 255 rx animatable, svg, converter=convertLength
256 ry animatable, svg, converter=convertLength 256 ry animatable, svg, converter=convertLength
257 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior 257 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior
258 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol lBlocksOn> 258 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol lBlocksOn>
259 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType
260 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
261 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
262 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit ion
263 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo ordinates
259 shape-image-threshold animatable, type_name=float 264 shape-image-threshold animatable, type_name=float
260 shape-margin animatable, converter=convertLength 265 shape-margin animatable, converter=convertLength
261 shape-outside animatable, converter=convertShapeValue 266 shape-outside animatable, converter=convertShapeValue
262 shape-rendering inherited, svg 267 shape-rendering inherited, svg
263 size custom_all 268 size custom_all
264 speak inherited 269 speak inherited
265 stop-color animatable, svg, converter=convertSVGColor 270 stop-color animatable, svg, converter=convertSVGColor
266 stop-opacity animatable, svg, converter=convertNumberOrPercentage 271 stop-opacity animatable, svg, converter=convertNumberOrPercentage
267 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all 272 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all
268 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c onverter=convertStrokeDasharray 273 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c onverter=convertStrokeDasharray
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 -webkit-shape-image-threshold alias_for=shape-image-threshold 532 -webkit-shape-image-threshold alias_for=shape-image-threshold
528 -webkit-shape-margin alias_for=shape-margin 533 -webkit-shape-margin alias_for=shape-margin
529 -webkit-shape-outside alias_for=shape-outside 534 -webkit-shape-outside alias_for=shape-outside
530 -webkit-transform alias_for=transform 535 -webkit-transform alias_for=transform
531 -webkit-transform-origin alias_for=transform-origin 536 -webkit-transform-origin alias_for=transform-origin
532 -webkit-transform-style alias_for=transform-style 537 -webkit-transform-style alias_for=transform-style
533 -webkit-transition alias_for=transition 538 -webkit-transition alias_for=transition
534 -webkit-transition-delay alias_for=transition-delay 539 -webkit-transition-delay alias_for=transition-delay
535 -webkit-transition-duration alias_for=transition-duration 540 -webkit-transition-duration alias_for=transition-duration
536 -webkit-transition-property alias_for=transition-property 541 -webkit-transition-property alias_for=transition-property
537 -webkit-transition-timing-function alias_for=transition-timing-function 542 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValueMappings.h ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698