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

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

Issue 1919813002: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 mask-source-type runtime_flag=CSSMaskSourceType, custom_all 238 mask-source-type runtime_flag=CSSMaskSourceType, custom_all
239 mask-type svg 239 mask-type svg
240 max-height interpolable, initial=initialMaxSize, converter=convertLengthMaxSizin g 240 max-height interpolable, initial=initialMaxSize, converter=convertLengthMaxSizin g
241 max-width interpolable, initial=initialMaxSize, converter=convertLengthMaxSizing 241 max-width interpolable, initial=initialMaxSize, converter=convertLengthMaxSizing
242 min-height interpolable, initial=initialMinSize, converter=convertLengthSizing 242 min-height interpolable, initial=initialMinSize, converter=convertLengthSizing
243 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing 243 min-width interpolable, initial=initialMinSize, converter=convertLengthSizing
244 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode 244 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode
245 motion-offset interpolable, converter=convertLength 245 motion-offset interpolable, converter=convertLength
246 motion-path converter=convertPathOrNone 246 motion-path converter=convertPathOrNone
247 motion-rotation interpolable, converter=convertMotionRotation 247 motion-rotation interpolable, converter=convertMotionRotation
248 nav-down type_name=StyleNavigationValue, initial=initialStyleNavigation, convert er=convertStyleNavigationValue
249 nav-left type_name=StyleNavigationValue, initial=initialStyleNavigation, convert er=convertStyleNavigationValue
250 nav-right type_name=StyleNavigationValue, initial=initialStyleNavigation, conver ter=convertStyleNavigationValue
251 nav-up type_name=StyleNavigationValue, initial=initialStyleNavigation, converter =convertStyleNavigationValue
248 object-fit type_name=ObjectFit 252 object-fit type_name=ObjectFit
249 object-position interpolable, converter=convertPosition 253 object-position interpolable, converter=convertPosition
250 opacity interpolable, type_name=float 254 opacity interpolable, type_name=float
251 order type_name=int 255 order type_name=int
252 orphans interpolable, inherited, type_name=short, custom_all 256 orphans interpolable, inherited, type_name=short, custom_all
253 outline-color interpolable, custom_all 257 outline-color interpolable, custom_all
254 outline-offset interpolable, converter=convertComputedLength<int> 258 outline-offset interpolable, converter=convertComputedLength<int>
255 outline-style custom_all 259 outline-style custom_all
256 outline-width interpolable, converter=convertLineWidth<unsigned short> 260 outline-width interpolable, converter=convertLineWidth<unsigned short>
257 overflow-wrap inherited 261 overflow-wrap inherited
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 -webkit-shape-margin alias_for=shape-margin 570 -webkit-shape-margin alias_for=shape-margin
567 -webkit-shape-outside alias_for=shape-outside 571 -webkit-shape-outside alias_for=shape-outside
568 -webkit-transform alias_for=transform 572 -webkit-transform alias_for=transform
569 -webkit-transform-origin alias_for=transform-origin 573 -webkit-transform-origin alias_for=transform-origin
570 -webkit-transform-style alias_for=transform-style 574 -webkit-transform-style alias_for=transform-style
571 -webkit-transition alias_for=transition 575 -webkit-transition alias_for=transition
572 -webkit-transition-delay alias_for=transition-delay 576 -webkit-transition-delay alias_for=transition-delay
573 -webkit-transition-duration alias_for=transition-duration 577 -webkit-transition-duration alias_for=transition-duration
574 -webkit-transition-property alias_for=transition-property 578 -webkit-transition-property alias_for=transition-property
575 -webkit-transition-timing-function alias_for=transition-timing-function 579 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698