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

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

Issue 2619813004: Made text-transform property independent. (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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color 376 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color
377 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all , api_class 377 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all , api_class
378 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> 378 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration>
379 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class 379 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class
380 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style 380 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style
381 text-indent interpolable, inherited, custom_all 381 text-indent interpolable, inherited, custom_all
382 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify 382 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify
383 text-overflow type_name=TextOverflow 383 text-overflow type_name=TextOverflow
384 text-shadow interpolable, inherited, converter=convertShadowList 384 text-shadow interpolable, inherited, converter=convertShadowList
385 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA djust 385 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA djust
386 text-transform inherited, keyword_only, keywords=[capitalize|uppercase|lowercase |none], initial_keyword=none 386 text-transform inherited, independent, keyword_only, keywords=[capitalize|upperc ase|lowercase|none], initial_keyword=none
387 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition, api_class 387 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition, api_class
388 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto 388 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto
389 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction 389 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction
390 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co nvertTransformOperations 390 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co nvertTransformOperations
391 transform-origin interpolable, converter=convertTransformOrigin, api_class 391 transform-origin interpolable, converter=convertTransformOrigin, api_class
392 transform-style name_for_methods=TransformStyle3D 392 transform-style name_for_methods=TransformStyle3D
393 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable, api_class 393 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable, api_class
394 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable 394 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable
395 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable 395 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable
396 unicode-bidi 396 unicode-bidi
(...skipping 253 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698