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

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

Issue 2048483002: Plumb TransformValue into the 'transform' property of StylePropertyMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stylevaue
Patch Set: Add Layout test Created 4 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
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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> 314 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration>
315 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style 315 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style
316 text-indent interpolable, inherited, custom_all 316 text-indent interpolable, inherited, custom_all
317 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify 317 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify
318 text-overflow type_name=TextOverflow 318 text-overflow type_name=TextOverflow
319 text-shadow interpolable, inherited, converter=convertShadow 319 text-shadow interpolable, inherited, converter=convertShadow
320 text-transform inherited 320 text-transform inherited
321 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition 321 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition
322 top interpolable, initial=initialOffset, converter=convertLengthOrAuto 322 top interpolable, initial=initialOffset, converter=convertLengthOrAuto
323 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction 323 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction
324 transform interpolable, custom_value 324 transform typedom_types=[Transform], keywords=[none], interpolable, custom_value
325 transform-origin interpolable, converter=convertTransformOrigin 325 transform-origin interpolable, converter=convertTransformOrigin
326 transform-style name_for_methods=TransformStyle3D 326 transform-style name_for_methods=TransformStyle3D
327 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable 327 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable
328 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable 328 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable
329 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable 329 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable
330 transition-delay custom_all 330 transition-delay custom_all
331 transition-duration custom_all 331 transition-duration custom_all
332 transition-property custom_all 332 transition-property custom_all
333 transition-timing-function custom_all 333 transition-timing-function custom_all
334 unicode-bidi 334 unicode-bidi
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 -webkit-shape-margin alias_for=shape-margin 577 -webkit-shape-margin alias_for=shape-margin
578 -webkit-shape-outside alias_for=shape-outside 578 -webkit-shape-outside alias_for=shape-outside
579 -webkit-transform alias_for=transform 579 -webkit-transform alias_for=transform
580 -webkit-transform-origin alias_for=transform-origin 580 -webkit-transform-origin alias_for=transform-origin
581 -webkit-transform-style alias_for=transform-style 581 -webkit-transform-style alias_for=transform-style
582 -webkit-transition alias_for=transition 582 -webkit-transition alias_for=transition
583 -webkit-transition-delay alias_for=transition-delay 583 -webkit-transition-delay alias_for=transition-delay
584 -webkit-transition-duration alias_for=transition-duration 584 -webkit-transition-duration alias_for=transition-duration
585 -webkit-transition-property alias_for=transition-property 585 -webkit-transition-property alias_for=transition-property
586 -webkit-transition-timing-function alias_for=transition-timing-function 586 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698