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

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

Issue 2614783003: Implements CSSPropertyAPI for the clip property. (Closed)
Patch Set: upstream 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 bottom typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl e, initial=initialOffset, converter=convertLengthOrAuto 227 bottom typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl e, initial=initialOffset, converter=convertLengthOrAuto
228 box-shadow interpolable, converter=convertShadowList 228 box-shadow interpolable, converter=convertShadowList
229 box-sizing 229 box-sizing
230 break-after type_name=EBreak 230 break-after type_name=EBreak
231 break-before type_name=EBreak 231 break-before type_name=EBreak
232 break-inside type_name=EBreak 232 break-inside type_name=EBreak
233 buffered-rendering svg 233 buffered-rendering svg
234 caption-side inherited, keyword_only, independent, keywords=[top|bottom|left|rig ht], initial_keyword=top 234 caption-side inherited, keyword_only, independent, keywords=[top|bottom|left|rig ht], initial_keyword=top
235 caret-color interpolable, inherited, custom_all 235 caret-color interpolable, inherited, custom_all
236 clear 236 clear
237 clip interpolable, converter=convertClip, custom_all 237 clip interpolable, converter=convertClip, custom_all, api_class
238 clip-path interpolable, converter=convertClipPath 238 clip-path interpolable, converter=convertClipPath
239 clip-rule inherited, svg, type_name=WindRule 239 clip-rule inherited, svg, type_name=WindRule
240 color-interpolation inherited, svg 240 color-interpolation inherited, svg
241 color-interpolation-filters inherited, svg, type_name=EColorInterpolation 241 color-interpolation-filters inherited, svg, type_name=EColorInterpolation
242 color-rendering inherited, svg 242 color-rendering inherited, svg
243 column-fill type_name=ColumnFill 243 column-fill type_name=ColumnFill
244 contain runtime_flag=CSSContainment, converter=convertFlags<Containment> 244 contain runtime_flag=CSSContainment, converter=convertFlags<Containment>
245 content custom_all, typedom_types=[Image], repeated 245 content custom_all, typedom_types=[Image], repeated
246 counter-increment custom_all 246 counter-increment custom_all
247 counter-reset custom_all 247 counter-reset custom_all
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 -webkit-text-size-adjust alias_for=text-size-adjust 650 -webkit-text-size-adjust alias_for=text-size-adjust
651 -webkit-transform alias_for=transform 651 -webkit-transform alias_for=transform
652 -webkit-transform-origin alias_for=transform-origin 652 -webkit-transform-origin alias_for=transform-origin
653 -webkit-transform-style alias_for=transform-style 653 -webkit-transform-style alias_for=transform-style
654 -webkit-transition alias_for=transition 654 -webkit-transition alias_for=transition
655 -webkit-transition-delay alias_for=transition-delay 655 -webkit-transition-delay alias_for=transition-delay
656 -webkit-transition-duration alias_for=transition-duration 656 -webkit-transition-duration alias_for=transition-duration
657 -webkit-transition-property alias_for=transition-property 657 -webkit-transition-property alias_for=transition-property
658 -webkit-transition-timing-function alias_for=transition-timing-function 658 -webkit-transition-timing-function alias_for=transition-timing-function
659 -webkit-user-select alias_for=user-select 659 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698