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

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

Issue 2613863002: Implements CSSPropertyAPI for the offset-position property. (Closed)
Patch Set: dependencies Created 3 years, 11 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing 307 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing
308 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode 308 mix-blend-mode type_name=blink::WebBlendMode, name_for_methods=BlendMode
309 motion-offset alias_for=offset-distance 309 motion-offset alias_for=offset-distance
310 motion-path alias_for=offset-path 310 motion-path alias_for=offset-path
311 motion-rotation alias_for=offset-rotation 311 motion-rotation alias_for=offset-rotation
312 object-fit type_name=ObjectFit 312 object-fit type_name=ObjectFit
313 object-position interpolable, converter=convertPosition 313 object-position interpolable, converter=convertPosition
314 offset-anchor runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=conv ertPositionOrAuto 314 offset-anchor runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=conv ertPositionOrAuto
315 offset-distance interpolable, converter=convertLength 315 offset-distance interpolable, converter=convertLength
316 offset-path converter=convertPathOrNone 316 offset-path converter=convertPathOrNone
317 offset-position runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=co nvertPositionOrAuto 317 offset-position runtime_flag=CSSOffsetPositionAnchor, interpolable, converter=co nvertPositionOrAuto, api_class
318 offset-rotate runtime_flag=CSSOffsetRotate, interpolable, converter=convertOffse tRotate 318 offset-rotate runtime_flag=CSSOffsetRotate, interpolable, converter=convertOffse tRotate
319 offset-rotation runtime_flag=CSSOffsetRotation, interpolable, converter=convertO ffsetRotate 319 offset-rotation runtime_flag=CSSOffsetRotation, interpolable, converter=convertO ffsetRotate
320 opacity interpolable, type_name=float 320 opacity interpolable, type_name=float
321 order type_name=int 321 order type_name=int
322 orphans interpolable, inherited, type_name=short 322 orphans interpolable, inherited, type_name=short
323 outline-color interpolable, custom_all 323 outline-color interpolable, custom_all
324 outline-offset interpolable, converter=convertComputedLength<int> 324 outline-offset interpolable, converter=convertComputedLength<int>
325 outline-style custom_all 325 outline-style custom_all
326 outline-width interpolable, converter=convertLineWidth<unsigned short> 326 outline-width interpolable, converter=convertLineWidth<unsigned short>
327 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor 327 overflow-anchor runtime_flag=ScrollAnchoring, type_name=EOverflowAnchor
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 -webkit-text-size-adjust alias_for=text-size-adjust 642 -webkit-text-size-adjust alias_for=text-size-adjust
643 -webkit-transform alias_for=transform 643 -webkit-transform alias_for=transform
644 -webkit-transform-origin alias_for=transform-origin 644 -webkit-transform-origin alias_for=transform-origin
645 -webkit-transform-style alias_for=transform-style 645 -webkit-transform-style alias_for=transform-style
646 -webkit-transition alias_for=transition 646 -webkit-transition alias_for=transition
647 -webkit-transition-delay alias_for=transition-delay 647 -webkit-transition-delay alias_for=transition-delay
648 -webkit-transition-duration alias_for=transition-duration 648 -webkit-transition-duration alias_for=transition-duration
649 -webkit-transition-property alias_for=transition-property 649 -webkit-transition-property alias_for=transition-property
650 -webkit-transition-timing-function alias_for=transition-timing-function 650 -webkit-transition-timing-function alias_for=transition-timing-function
651 -webkit-user-select alias_for=user-select 651 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698