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

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

Issue 2618673002: Implements CSSPropertyAPI for the webkit-highlight property. (Closed)
Patch Set: dependencies 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 -webkit-box-orient 416 -webkit-box-orient
417 -webkit-box-pack 417 -webkit-box-pack
418 -webkit-box-reflect converter=convertBoxReflect 418 -webkit-box-reflect converter=convertBoxReflect
419 column-count interpolable, type_name=unsigned short, custom_all 419 column-count interpolable, type_name=unsigned short, custom_all
420 column-gap interpolable, converter=convertComputedLength<float>, custom_all 420 column-gap interpolable, converter=convertComputedLength<float>, custom_all
421 column-rule-color interpolable, custom_all 421 column-rule-color interpolable, custom_all
422 column-rule-style type_name=EBorderStyle, initial=initialBorderStyle 422 column-rule-style type_name=EBorderStyle, initial=initialBorderStyle
423 column-rule-width interpolable, converter=convertLineWidth<unsigned short> 423 column-rule-width interpolable, converter=convertLineWidth<unsigned short>
424 column-span type_name=ColumnSpan 424 column-span type_name=ColumnSpan
425 column-width interpolable, converter=convertComputedLength<float>, custom_all 425 column-width interpolable, converter=convertComputedLength<float>, custom_all
426 -webkit-highlight inherited, converter=convertString<CSSValueNone> 426 -webkit-highlight inherited, converter=convertString<CSSValueNone>, api_class
427 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto> 427 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto>
428 -webkit-line-break inherited, type_name=LineBreak 428 -webkit-line-break inherited, type_name=LineBreak
429 -webkit-line-clamp type_name=LineClampValue 429 -webkit-line-clamp type_name=LineClampValue
430 -webkit-margin-after-collapse type_name=EMarginCollapse 430 -webkit-margin-after-collapse type_name=EMarginCollapse
431 -webkit-margin-before-collapse type_name=EMarginCollapse 431 -webkit-margin-before-collapse type_name=EMarginCollapse
432 -webkit-margin-bottom-collapse type_name=EMarginCollapse, name_for_methods=Margi nAfterCollapse 432 -webkit-margin-bottom-collapse type_name=EMarginCollapse, name_for_methods=Margi nAfterCollapse
433 -webkit-margin-top-collapse type_name=EMarginCollapse, name_for_methods=MarginBe foreCollapse 433 -webkit-margin-top-collapse type_name=EMarginCollapse, name_for_methods=MarginBe foreCollapse
434 -webkit-mask-box-image-outset interpolable, custom_all 434 -webkit-mask-box-image-outset interpolable, custom_all
435 -webkit-mask-box-image-repeat custom_all 435 -webkit-mask-box-image-repeat custom_all
436 -webkit-mask-box-image-slice interpolable, custom_all 436 -webkit-mask-box-image-slice interpolable, custom_all
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 -webkit-text-size-adjust alias_for=text-size-adjust 642 -webkit-text-size-adjust alias_for=text-size-adjust
643 -webkit-transform alias_for=transform 643 -webkit-transform alias_for=transform
644 -webkit-transform-origin alias_for=transform-origin 644 -webkit-transform-origin alias_for=transform-origin
645 -webkit-transform-style alias_for=transform-style 645 -webkit-transform-style alias_for=transform-style
646 -webkit-transition alias_for=transition 646 -webkit-transition alias_for=transition
647 -webkit-transition-delay alias_for=transition-delay 647 -webkit-transition-delay alias_for=transition-delay
648 -webkit-transition-duration alias_for=transition-duration 648 -webkit-transition-duration alias_for=transition-duration
649 -webkit-transition-property alias_for=transition-property 649 -webkit-transition-property alias_for=transition-property
650 -webkit-transition-timing-function alias_for=transition-timing-function 650 -webkit-transition-timing-function alias_for=transition-timing-function
651 -webkit-user-select alias_for=user-select 651 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698