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

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

Issue 2559073002: CSS Motion Path: Support offset-rotate in addition to offset-rotation (Closed)
Patch Set: Created 4 years 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode 278 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode
279 motion-offset alias_for=offset-distance 279 motion-offset alias_for=offset-distance
280 motion-path alias_for=offset-path 280 motion-path alias_for=offset-path
281 motion-rotation alias_for=offset-rotation 281 motion-rotation alias_for=offset-rotation
282 object-fit type_name=ObjectFit 282 object-fit type_name=ObjectFit
283 object-position interpolable, converter=convertPosition 283 object-position interpolable, converter=convertPosition
284 offset-anchor runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=conv ertPositionOrAuto 284 offset-anchor runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=conv ertPositionOrAuto
285 offset-distance interpolable, converter=convertLength 285 offset-distance interpolable, converter=convertLength
286 offset-path converter=convertPathOrNone 286 offset-path converter=convertPathOrNone
287 offset-position runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=co nvertPositionOrAuto 287 offset-position runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=co nvertPositionOrAuto
288 offset-rotation interpolable, converter=convertOffsetRotation 288 offset-rotate runtime_flag=CSSOffsetRotate, interpolable, converter=convertOffse tRotation
289 offset-rotation runtime_flag=CSSOffsetRotation, interpolable, converter=convertO ffsetRotation
289 opacity interpolable, type_name=float 290 opacity interpolable, type_name=float
290 order type_name=int 291 order type_name=int
291 orphans interpolable, inherited, type_name=short 292 orphans interpolable, inherited, type_name=short
292 outline-color interpolable, custom_all 293 outline-color interpolable, custom_all
293 outline-offset interpolable, converter=convertComputedLength<int> 294 outline-offset interpolable, converter=convertComputedLength<int>
294 outline-style custom_all 295 outline-style custom_all
295 outline-width interpolable, converter=convertLineWidth<unsigned short> 296 outline-width interpolable, converter=convertLineWidth<unsigned short>
296 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor 297 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor
297 overflow-wrap inherited 298 overflow-wrap inherited
298 overflow-x type_name=EOverflow 299 overflow-x type_name=EOverflow
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 -webkit-text-size-adjust alias_for=text-size-adjust 612 -webkit-text-size-adjust alias_for=text-size-adjust
612 -webkit-transform alias_for=transform 613 -webkit-transform alias_for=transform
613 -webkit-transform-origin alias_for=transform-origin 614 -webkit-transform-origin alias_for=transform-origin
614 -webkit-transform-style alias_for=transform-style 615 -webkit-transform-style alias_for=transform-style
615 -webkit-transition alias_for=transition 616 -webkit-transition alias_for=transition
616 -webkit-transition-delay alias_for=transition-delay 617 -webkit-transition-delay alias_for=transition-delay
617 -webkit-transition-duration alias_for=transition-duration 618 -webkit-transition-duration alias_for=transition-duration
618 -webkit-transition-property alias_for=transition-property 619 -webkit-transition-property alias_for=transition-property
619 -webkit-transition-timing-function alias_for=transition-timing-function 620 -webkit-transition-timing-function alias_for=transition-timing-function
620 -webkit-user-select alias_for=user-select 621 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698