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

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

Issue 2364503002: CSS Motion Path: animate offset-anchor and offset-position (Closed)
Patch Set: alphabetical Created 4 years, 2 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 max-height interpolable, initial=initialMaxSize, converter=convertLengthMaxSizin g 253 max-height interpolable, initial=initialMaxSize, converter=convertLengthMaxSizin g
254 max-width interpolable, initial=initialMaxSize, converter=convertLengthMaxSizing 254 max-width interpolable, initial=initialMaxSize, converter=convertLengthMaxSizing
255 min-height interpolable, initial=initialMinSize, converter=convertLengthSizing 255 min-height interpolable, initial=initialMinSize, converter=convertLengthSizing
256 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing 256 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing
257 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode 257 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode
258 motion-offset alias_for=offset-distance 258 motion-offset alias_for=offset-distance
259 motion-path alias_for=offset-path 259 motion-path alias_for=offset-path
260 motion-rotation alias_for=offset-rotation 260 motion-rotation alias_for=offset-rotation
261 object-fit type_name=ObjectFit 261 object-fit type_name=ObjectFit
262 object-position interpolable, converter=convertPosition 262 object-position interpolable, converter=convertPosition
263 offset-anchor runtime_flag=CSSOffsetPositionAnchor, converter=convertPositionOrA uto 263 offset-anchor runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=conv ertPositionOrAuto
264 offset-distance interpolable, converter=convertLength 264 offset-distance interpolable, converter=convertLength
265 offset-path converter=convertPathOrNone 265 offset-path converter=convertPathOrNone
266 offset-position runtime_flag=CSSOffsetPositionAnchor, converter=convertPositionO rAuto 266 offset-position runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=co nvertPositionOrAuto
267 offset-rotation interpolable, converter=convertOffsetRotation 267 offset-rotation interpolable, converter=convertOffsetRotation
268 opacity interpolable, type_name=float 268 opacity interpolable, type_name=float
269 order type_name=int 269 order type_name=int
270 orphans interpolable, inherited, type_name=short 270 orphans interpolable, inherited, type_name=short
271 outline-color interpolable, custom_all 271 outline-color interpolable, custom_all
272 outline-offset interpolable, converter=convertComputedLength<int> 272 outline-offset interpolable, converter=convertComputedLength<int>
273 outline-style custom_all 273 outline-style custom_all
274 outline-width interpolable, converter=convertLineWidth<unsigned short> 274 outline-width interpolable, converter=convertLineWidth<unsigned short>
275 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor 275 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor
276 overflow-wrap inherited 276 overflow-wrap inherited
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 -webkit-text-size-adjust alias_for=text-size-adjust 593 -webkit-text-size-adjust alias_for=text-size-adjust
594 -webkit-transform alias_for=transform 594 -webkit-transform alias_for=transform
595 -webkit-transform-origin alias_for=transform-origin 595 -webkit-transform-origin alias_for=transform-origin
596 -webkit-transform-style alias_for=transform-style 596 -webkit-transform-style alias_for=transform-style
597 -webkit-transition alias_for=transition 597 -webkit-transition alias_for=transition
598 -webkit-transition-delay alias_for=transition-delay 598 -webkit-transition-delay alias_for=transition-delay
599 -webkit-transition-duration alias_for=transition-duration 599 -webkit-transition-duration alias_for=transition-duration
600 -webkit-transition-property alias_for=transition-property 600 -webkit-transition-property alias_for=transition-property
601 -webkit-transition-timing-function alias_for=transition-timing-function 601 -webkit-transition-timing-function alias_for=transition-timing-function
602 -webkit-user-select alias_for=user-select 602 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698