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

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

Issue 2641083002: Implements CSSPropertyAPI for letter and word spacing (Closed)
Patch Set: rebase update 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 grid-template-rows runtime_flag=CSSGridLayout, custom_all 283 grid-template-rows runtime_flag=CSSGridLayout, custom_all
284 height typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl e, initial=initialSize, converter=convertLengthSizing 284 height typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl e, initial=initialSize, converter=convertLengthSizing
285 hyphens runtime_flag=CSSHyphens, inherited, type_name=Hyphens 285 hyphens runtime_flag=CSSHyphens, inherited, type_name=Hyphens
286 image-rendering inherited 286 image-rendering inherited
287 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation 287 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation
288 isolation 288 isolation
289 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData 289 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData
290 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData 290 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData
291 justify-self runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converter =convertSelfOrDefaultAlignmentData 291 justify-self runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converter =convertSelfOrDefaultAlignmentData
292 left typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto 292 left typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto
293 letter-spacing interpolable, inherited, initial=initialLetterWordSpacing, conver ter=convertSpacing 293 letter-spacing interpolable, inherited, initial=initialLetterWordSpacing, conver ter=convertSpacing, api_class=CSSPropertyAPILetterAndWordSpacing
294 lighting-color interpolable, svg, converter=convertColor 294 lighting-color interpolable, svg, converter=convertColor
295 line-height interpolable, inherited, getter=specifiedLineHeight, converter=conve rtLineHeight 295 line-height interpolable, inherited, getter=specifiedLineHeight, converter=conve rtLineHeight
296 list-style-image interpolable, inherited, custom_value, typedom_types=[Image] 296 list-style-image interpolable, inherited, custom_value, typedom_types=[Image]
297 list-style-position inherited, independent, keyword_only, keywords=[outside|insi de], initial_keyword=outside 297 list-style-position inherited, independent, keyword_only, keywords=[outside|insi de], initial_keyword=outside
298 list-style-type inherited, keyword_only, keywords=[disc|circle|square|decimal|de cimal-leading-zero|arabic-indic|bengali|cambodian|khmer|devanagari|gujarati|gurm ukhi|kannada|lao|malayalam|mongolian|myanmar|oriya|persian|urdu|telugu|tibetan|t hai|lower-roman|upper-roman|lower-greek|lower-alpha|lower-latin|upper-alpha|uppe r-latin|cjk-earthly-branch|cjk-heavenly-stem|ethiopic-halehame|ethiopic-halehame -am|ethiopic-halehame-ti-er|ethiopic-halehame-ti-et|hangul|hangul-consonant|kore an-hangul-formal|korean-hanja-formal|korean-hanja-informal|hebrew|armenian|lower -armenian|upper-armenian|georgian|cjk-ideographic|simp-chinese-formal|simp-chine se-informal|trad-chinese-formal|trad-chinese-informal|hiragana|katakana|hiragana -iroha|katakana-iroha|none], initial_keyword=disc 298 list-style-type inherited, keyword_only, keywords=[disc|circle|square|decimal|de cimal-leading-zero|arabic-indic|bengali|cambodian|khmer|devanagari|gujarati|gurm ukhi|kannada|lao|malayalam|mongolian|myanmar|oriya|persian|urdu|telugu|tibetan|t hai|lower-roman|upper-roman|lower-greek|lower-alpha|lower-latin|upper-alpha|uppe r-latin|cjk-earthly-branch|cjk-heavenly-stem|ethiopic-halehame|ethiopic-halehame -am|ethiopic-halehame-ti-er|ethiopic-halehame-ti-et|hangul|hangul-consonant|kore an-hangul-formal|korean-hanja-formal|korean-hanja-informal|hebrew|armenian|lower -armenian|upper-armenian|georgian|cjk-ideographic|simp-chinese-formal|simp-chine se-informal|trad-chinese-formal|trad-chinese-informal|hiragana|katakana|hiragana -iroha|katakana-iroha|none], initial_keyword=disc
299 margin-bottom interpolable, initial=initialMargin, converter=convertQuirkyLength 299 margin-bottom interpolable, initial=initialMargin, converter=convertQuirkyLength
300 margin-left interpolable, initial=initialMargin, converter=convertQuirkyLength 300 margin-left interpolable, initial=initialMargin, converter=convertQuirkyLength
301 margin-right interpolable, initial=initialMargin, converter=convertQuirkyLength 301 margin-right interpolable, initial=initialMargin, converter=convertQuirkyLength
302 margin-top interpolable, initial=initialMargin, converter=convertQuirkyLength 302 margin-top interpolable, initial=initialMargin, converter=convertQuirkyLength
303 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert FragmentIdentifier 303 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert FragmentIdentifier
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 -webkit-transform-origin-y interpolable, converter=convertLength 468 -webkit-transform-origin-y interpolable, converter=convertLength
469 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float>, api_class 469 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float>, api_class
470 -webkit-user-drag 470 -webkit-user-drag
471 -webkit-user-modify inherited 471 -webkit-user-modify inherited
472 user-select inherited 472 user-select inherited
473 white-space inherited, independent, keyword_only, keywords=[normal|pre|pre-wrap| pre-line|nowrap|-webkit-nowrap], initial_keyword=normal 473 white-space inherited, independent, keyword_only, keywords=[normal|pre|pre-wrap| pre-line|nowrap|-webkit-nowrap], initial_keyword=normal
474 widows interpolable, inherited, type_name=short 474 widows interpolable, inherited, type_name=short
475 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_ types=[Length], keywords=[auto], supports_percentage 475 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_ types=[Length], keywords=[auto], supports_percentage
476 will-change custom_all, api_class 476 will-change custom_all, api_class
477 word-break inherited 477 word-break inherited
478 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing 478 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing, api_class=CSSPropertyAPILetterAndWordSpacing
479 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers. 479 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers.
480 word-wrap inherited, name_for_methods=OverflowWrap 480 word-wrap inherited, name_for_methods=OverflowWrap
481 z-index interpolable, type_name=int, custom_all, api_class 481 z-index interpolable, type_name=int, custom_all, api_class
482 482
483 // CSS logical props 483 // CSS logical props
484 inline-size direction_aware 484 inline-size direction_aware
485 block-size direction_aware 485 block-size direction_aware
486 min-inline-size direction_aware 486 min-inline-size direction_aware
487 min-block-size direction_aware 487 min-block-size direction_aware
488 max-inline-size direction_aware 488 max-inline-size direction_aware
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 -webkit-text-size-adjust alias_for=text-size-adjust 655 -webkit-text-size-adjust alias_for=text-size-adjust
656 -webkit-transform alias_for=transform 656 -webkit-transform alias_for=transform
657 -webkit-transform-origin alias_for=transform-origin 657 -webkit-transform-origin alias_for=transform-origin
658 -webkit-transform-style alias_for=transform-style 658 -webkit-transform-style alias_for=transform-style
659 -webkit-transition alias_for=transition 659 -webkit-transition alias_for=transition
660 -webkit-transition-delay alias_for=transition-delay 660 -webkit-transition-delay alias_for=transition-delay
661 -webkit-transition-duration alias_for=transition-duration 661 -webkit-transition-duration alias_for=transition-duration
662 -webkit-transition-property alias_for=transition-property 662 -webkit-transition-property alias_for=transition-property
663 -webkit-transition-timing-function alias_for=transition-timing-function 663 -webkit-transition-timing-function alias_for=transition-timing-function
664 -webkit-user-select alias_for=user-select 664 -webkit-user-select alias_for=user-select
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698