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

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

Issue 2610853004: Implements CSSPropertyAPI for the text-indent property. (Closed)
Patch Set: rebase 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 text-align inherited, custom_value, keyword_only, keywords=[left|right|center|ju stify|webkitLeft|webkitRight|webkitCenter|start|end], initial_keyword=start 376 text-align inherited, custom_value, keyword_only, keywords=[left|right|center|ju stify|webkitLeft|webkitRight|webkitCenter|start|end], initial_keyword=start
377 text-align-last inherited, type_name=TextAlignLast 377 text-align-last inherited, type_name=TextAlignLast
378 text-anchor inherited, svg 378 text-anchor inherited, svg
379 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb ine 379 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb ine
380 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag 380 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag
381 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color 381 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color
382 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all , api_class 382 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all , api_class
383 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> 383 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration>
384 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class 384 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class
385 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style 385 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style
386 text-indent interpolable, inherited, custom_all 386 text-indent interpolable, inherited, custom_all, api_class
387 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify 387 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify
388 text-overflow type_name=TextOverflow 388 text-overflow type_name=TextOverflow
389 text-shadow interpolable, inherited, converter=convertShadowList 389 text-shadow interpolable, inherited, converter=convertShadowList
390 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA djust 390 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA djust
391 text-transform inherited, independent, keyword_only, keywords=[capitalize|upperc ase|lowercase|none], initial_keyword=none 391 text-transform inherited, independent, keyword_only, keywords=[capitalize|upperc ase|lowercase|none], initial_keyword=none
392 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition, api_class 392 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition, api_class
393 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto 393 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto
394 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction 394 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction
395 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co nvertTransformOperations 395 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co nvertTransformOperations
396 transform-origin interpolable, converter=convertTransformOrigin, api_class 396 transform-origin interpolable, converter=convertTransformOrigin, api_class
(...skipping 258 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