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

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

Issue 703563002: Remove shape-outside. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 page-break-inside type_name=EPageBreak, initial=initialPageBreak 190 page-break-inside type_name=EPageBreak, initial=initialPageBreak
191 perspective animatable, custom_value 191 perspective animatable, custom_value
192 perspective-origin animatable, custom_all 192 perspective-origin animatable, custom_all
193 pointer-events inherited 193 pointer-events inherited
194 position 194 position
195 quotes inherited, converter=convertQuotes 195 quotes inherited, converter=convertQuotes
196 // FIXME: This shouldn't be inherited, as per css-ui 196 // FIXME: This shouldn't be inherited, as per css-ui
197 resize inherited, custom_value 197 resize inherited, custom_value
198 right animatable, initial=initialOffset, converter=convertLengthOrAuto 198 right animatable, initial=initialOffset, converter=convertLengthOrAuto
199 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior 199 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior
200 shape-image-threshold animatable, type_name=float
201 shape-margin animatable, converter=convertLength
202 shape-outside animatable, custom_value
203 size custom_all 200 size custom_all
204 speak inherited 201 speak inherited
205 table-layout 202 table-layout
206 tab-size inherited, type_name=unsigned 203 tab-size inherited, type_name=unsigned
207 text-align inherited, custom_value 204 text-align inherited, custom_value
208 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast 205 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast
209 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag 206 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag
210 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color 207 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color
211 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all 208 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all
212 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, converter=convertFlags<TextDecoration> 209 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, converter=convertFlags<TextDecoration>
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 -webkit-flex alias_for=flex 417 -webkit-flex alias_for=flex
421 -webkit-flex-basis alias_for=flex-basis 418 -webkit-flex-basis alias_for=flex-basis
422 -webkit-flex-direction alias_for=flex-direction 419 -webkit-flex-direction alias_for=flex-direction
423 -webkit-flex-flow alias_for=flex-flow 420 -webkit-flex-flow alias_for=flex-flow
424 -webkit-flex-grow alias_for=flex-grow 421 -webkit-flex-grow alias_for=flex-grow
425 -webkit-flex-shrink alias_for=flex-shrink 422 -webkit-flex-shrink alias_for=flex-shrink
426 -webkit-flex-wrap alias_for=flex-wrap 423 -webkit-flex-wrap alias_for=flex-wrap
427 -webkit-justify-content alias_for=justify-content 424 -webkit-justify-content alias_for=justify-content
428 -webkit-opacity alias_for=opacity 425 -webkit-opacity alias_for=opacity
429 -webkit-order alias_for=order 426 -webkit-order alias_for=order
430 -webkit-shape-image-threshold alias_for=shape-image-threshold
431 -webkit-shape-margin alias_for=shape-margin
432 -webkit-shape-outside alias_for=shape-outside
OLDNEW
« no previous file with comments | « sky/engine/core/css/CSSComputedStyleDeclaration.cpp ('k') | sky/engine/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698