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

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

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 top animatable, initial=initialOffset, converter=convertLengthOrAuto 296 top animatable, initial=initialOffset, converter=convertLengthOrAuto
297 touch-action converter=convertFlags<TouchAction> 297 touch-action converter=convertFlags<TouchAction>
298 transform animatable, custom_value 298 transform animatable, custom_value
299 transform-origin animatable, converter=convertTransformOrigin 299 transform-origin animatable, converter=convertTransformOrigin
300 transform-style name_for_methods=TransformStyle3D 300 transform-style name_for_methods=TransformStyle3D
301 transition-delay custom_all 301 transition-delay custom_all
302 transition-duration custom_all 302 transition-duration custom_all
303 transition-property custom_all 303 transition-property custom_all
304 transition-timing-function custom_all 304 transition-timing-function custom_all
305 unicode-bidi 305 unicode-bidi
306 variable inherited, custom_all
306 vector-effect svg 307 vector-effect svg
307 vertical-align animatable, custom_inherit, custom_value 308 vertical-align animatable, custom_inherit, custom_value
308 visibility animatable, inherited 309 visibility animatable, inherited
309 x animatable, svg, converter=convertLength 310 x animatable, svg, converter=convertLength
310 y animatable, svg, converter=convertLength 311 y animatable, svg, converter=convertLength
311 -webkit-appearance type_name=ControlPart 312 -webkit-appearance type_name=ControlPart
312 -webkit-app-region custom_all 313 -webkit-app-region custom_all
313 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip 314 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip
314 -webkit-background-composite custom_all 315 -webkit-background-composite custom_all
315 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin 316 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 -webkit-shape-margin alias_for=shape-margin 534 -webkit-shape-margin alias_for=shape-margin
534 -webkit-shape-outside alias_for=shape-outside 535 -webkit-shape-outside alias_for=shape-outside
535 -webkit-transform alias_for=transform 536 -webkit-transform alias_for=transform
536 -webkit-transform-origin alias_for=transform-origin 537 -webkit-transform-origin alias_for=transform-origin
537 -webkit-transform-style alias_for=transform-style 538 -webkit-transform-style alias_for=transform-style
538 -webkit-transition alias_for=transition 539 -webkit-transition alias_for=transition
539 -webkit-transition-delay alias_for=transition-delay 540 -webkit-transition-delay alias_for=transition-delay
540 -webkit-transition-duration alias_for=transition-duration 541 -webkit-transition-duration alias_for=transition-duration
541 -webkit-transition-property alias_for=transition-property 542 -webkit-transition-property alias_for=transition-property
542 -webkit-transition-timing-function alias_for=transition-timing-function 543 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698