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

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

Issue 1737453002: WIP: snap-width Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 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
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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts 277 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
278 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts 278 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
279 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit ion 279 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit ion
280 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo ordinates 280 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo ordinates
281 shape-image-threshold interpolable, type_name=float 281 shape-image-threshold interpolable, type_name=float
282 shape-margin interpolable, converter=convertLength 282 shape-margin interpolable, converter=convertLength
283 shape-outside interpolable, converter=convertShapeValue 283 shape-outside interpolable, converter=convertShapeValue
284 shape-rendering inherited, svg 284 shape-rendering inherited, svg
285 size custom_all 285 size custom_all
286 snap-height runtime_flag=CSSSnapSize, inherited, custom_all 286 snap-height runtime_flag=CSSSnapSize, inherited, custom_all
287 snap-width runtime_flag=CSSSnapSize, custom_all
287 speak inherited 288 speak inherited
288 stop-color interpolable, svg, converter=convertColor 289 stop-color interpolable, svg, converter=convertColor
289 stop-opacity interpolable, svg, converter=convertNumberOrPercentage 290 stop-opacity interpolable, svg, converter=convertNumberOrPercentage
290 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all 291 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all
291 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray, converter=convertStrokeDasharray 292 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray, converter=convertStrokeDasharray
292 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse t, converter=convertLength 293 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse t, converter=convertLength
293 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle 294 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle
294 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle 295 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle
295 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method s=StrokeMiterLimit 296 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method s=StrokeMiterLimit
296 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage 297 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 -webkit-shape-margin alias_for=shape-margin 567 -webkit-shape-margin alias_for=shape-margin
567 -webkit-shape-outside alias_for=shape-outside 568 -webkit-shape-outside alias_for=shape-outside
568 -webkit-transform alias_for=transform 569 -webkit-transform alias_for=transform
569 -webkit-transform-origin alias_for=transform-origin 570 -webkit-transform-origin alias_for=transform-origin
570 -webkit-transform-style alias_for=transform-style 571 -webkit-transform-style alias_for=transform-style
571 -webkit-transition alias_for=transition 572 -webkit-transition alias_for=transition
572 -webkit-transition-delay alias_for=transition-delay 573 -webkit-transition-delay alias_for=transition-delay
573 -webkit-transition-duration alias_for=transition-duration 574 -webkit-transition-duration alias_for=transition-duration
574 -webkit-transition-property alias_for=transition-property 575 -webkit-transition-property alias_for=transition-property
575 -webkit-transition-timing-function alias_for=transition-timing-function 576 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698