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

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

Issue 850103003: Unprefix -webkit-filter and add a pixel test for it. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 unicode-bidi 214 unicode-bidi
215 vertical-align animatable, custom_inherit, custom_value 215 vertical-align animatable, custom_inherit, custom_value
216 animation-delay custom_all 216 animation-delay custom_all
217 animation-direction custom_all 217 animation-direction custom_all
218 animation-duration custom_all 218 animation-duration custom_all
219 animation-fill-mode custom_all 219 animation-fill-mode custom_all
220 animation-iteration-count custom_all 220 animation-iteration-count custom_all
221 animation-name custom_all 221 animation-name custom_all
222 animation-play-state custom_all 222 animation-play-state custom_all
223 animation-timing-function custom_all 223 animation-timing-function custom_all
224 filter animatable, custom_value
224 -webkit-aspect-ratio inherited, custom_all 225 -webkit-aspect-ratio inherited, custom_all
225 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility 226 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility
226 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip 227 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip
227 -webkit-background-composite custom_all 228 -webkit-background-composite custom_all
228 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin 229 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin
229 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize 230 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize
230 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo ntalBorderSpacing, converter=convertComputedLength<short> 231 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo ntalBorderSpacing, converter=convertComputedLength<short>
231 -webkit-border-image initial=initialNinePieceImage, custom_value 232 -webkit-border-image initial=initialNinePieceImage, custom_value
232 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical BorderSpacing, converter=convertComputedLength<short> 233 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical BorderSpacing, converter=convertComputedLength<short>
233 -webkit-box-decoration-break 234 -webkit-box-decoration-break
234 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow 235 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow
235 -webkit-clip-path animatable, custom_value 236 -webkit-clip-path animatable, custom_value
236 -webkit-filter animatable, custom_value
237 -webkit-highlight inherited, converter=convertString<CSSValueNone> 237 -webkit-highlight inherited, converter=convertString<CSSValueNone>
238 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto> 238 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto>
239 -webkit-line-box-contain inherited, converter=convertLineBoxContain 239 -webkit-line-box-contain inherited, converter=convertLineBoxContain
240 -webkit-line-break inherited, type_name=LineBreak 240 -webkit-line-break inherited, type_name=LineBreak
241 -webkit-mask-box-image-outset animatable, custom_all 241 -webkit-mask-box-image-outset animatable, custom_all
242 -webkit-mask-box-image-repeat custom_all 242 -webkit-mask-box-image-repeat custom_all
243 -webkit-mask-box-image-slice animatable, custom_all 243 -webkit-mask-box-image-slice animatable, custom_all
244 -webkit-mask-box-image-source animatable, custom_value 244 -webkit-mask-box-image-source animatable, custom_value
245 -webkit-mask-box-image-width animatable, custom_all 245 -webkit-mask-box-image-width animatable, custom_all
246 -webkit-mask-clip custom_all 246 -webkit-mask-clip custom_all
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 -webkit-flex alias_for=flex 384 -webkit-flex alias_for=flex
385 -webkit-flex-basis alias_for=flex-basis 385 -webkit-flex-basis alias_for=flex-basis
386 -webkit-flex-direction alias_for=flex-direction 386 -webkit-flex-direction alias_for=flex-direction
387 -webkit-flex-flow alias_for=flex-flow 387 -webkit-flex-flow alias_for=flex-flow
388 -webkit-flex-grow alias_for=flex-grow 388 -webkit-flex-grow alias_for=flex-grow
389 -webkit-flex-shrink alias_for=flex-shrink 389 -webkit-flex-shrink alias_for=flex-shrink
390 -webkit-flex-wrap alias_for=flex-wrap 390 -webkit-flex-wrap alias_for=flex-wrap
391 -webkit-justify-content alias_for=justify-content 391 -webkit-justify-content alias_for=justify-content
392 -webkit-opacity alias_for=opacity 392 -webkit-opacity alias_for=opacity
393 -webkit-order alias_for=order 393 -webkit-order alias_for=order
OLDNEW
« no previous file with comments | « sky/engine/core/css/CSSComputedStyleDeclaration.cpp ('k') | sky/engine/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698