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

Side by Side Diff: sky/engine/core/css/CSSProperties.in

Issue 768893002: Remove border-collapse (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 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 do not get their own enum and instead map 7 // Properties specifying alias_for do not get their own enum and instead map
8 // directly onto the CSSPropertyID they alias. Currently this means that the 8 // directly onto the CSSPropertyID they alias. Currently this means that the
9 // UseCounter will not pick up on these (crbug.com/304855) 9 // UseCounter will not pick up on these (crbug.com/304855)
10 10
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 background-position-x animatable, custom_all 110 background-position-x animatable, custom_all
111 background-position-y animatable, custom_all 111 background-position-y animatable, custom_all
112 background-repeat-x custom_all 112 background-repeat-x custom_all
113 background-repeat-y custom_all 113 background-repeat-y custom_all
114 background-size animatable, custom_all 114 background-size animatable, custom_all
115 border-bottom-color animatable, custom_all 115 border-bottom-color animatable, custom_all
116 border-bottom-left-radius animatable, initial=initialBorderRadius, converter=con vertRadius 116 border-bottom-left-radius animatable, initial=initialBorderRadius, converter=con vertRadius
117 border-bottom-right-radius animatable, initial=initialBorderRadius, converter=co nvertRadius 117 border-bottom-right-radius animatable, initial=initialBorderRadius, converter=co nvertRadius
118 border-bottom-style type_name=EBorderStyle, initial=initialBorderStyle 118 border-bottom-style type_name=EBorderStyle, initial=initialBorderStyle
119 border-bottom-width animatable, initial=initialBorderWidth, converter=convertLin eWidth<unsigned> 119 border-bottom-width animatable, initial=initialBorderWidth, converter=convertLin eWidth<unsigned>
120 border-collapse inherited
121 border-image-outset animatable, custom_all 120 border-image-outset animatable, custom_all
122 border-image-repeat custom_all 121 border-image-repeat custom_all
123 border-image-slice animatable, custom_all 122 border-image-slice animatable, custom_all
124 border-image-source animatable, custom_value 123 border-image-source animatable, custom_value
125 border-image-width animatable, custom_all 124 border-image-width animatable, custom_all
126 border-left-color animatable, custom_all 125 border-left-color animatable, custom_all
127 border-left-style type_name=EBorderStyle, initial=initialBorderStyle 126 border-left-style type_name=EBorderStyle, initial=initialBorderStyle
128 border-left-width animatable, initial=initialBorderWidth, converter=convertLineW idth<unsigned> 127 border-left-width animatable, initial=initialBorderWidth, converter=convertLineW idth<unsigned>
129 border-right-color animatable, custom_all 128 border-right-color animatable, custom_all
130 border-right-style type_name=EBorderStyle, initial=initialBorderStyle 129 border-right-style type_name=EBorderStyle, initial=initialBorderStyle
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 -webkit-flex alias_for=flex 400 -webkit-flex alias_for=flex
402 -webkit-flex-basis alias_for=flex-basis 401 -webkit-flex-basis alias_for=flex-basis
403 -webkit-flex-direction alias_for=flex-direction 402 -webkit-flex-direction alias_for=flex-direction
404 -webkit-flex-flow alias_for=flex-flow 403 -webkit-flex-flow alias_for=flex-flow
405 -webkit-flex-grow alias_for=flex-grow 404 -webkit-flex-grow alias_for=flex-grow
406 -webkit-flex-shrink alias_for=flex-shrink 405 -webkit-flex-shrink alias_for=flex-shrink
407 -webkit-flex-wrap alias_for=flex-wrap 406 -webkit-flex-wrap alias_for=flex-wrap
408 -webkit-justify-content alias_for=justify-content 407 -webkit-justify-content alias_for=justify-content
409 -webkit-opacity alias_for=opacity 408 -webkit-opacity alias_for=opacity
410 -webkit-order alias_for=order 409 -webkit-order alias_for=order
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698