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

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

Issue 2100013002: Implement the new text-size-adjust CSS property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup convertTextSizeAdjust and add a test that better covers it Created 4 years, 5 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb ine 310 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb ine
311 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag 311 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime flag
312 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color 312 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d ecoration-line;text-decoration-style;text-decoration-color
313 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all 313 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all
314 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> 314 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco ration, type_name=TextDecoration, converter=convertFlags<TextDecoration>
315 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style 315 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration Style
316 text-indent interpolable, inherited, custom_all 316 text-indent interpolable, inherited, custom_all
317 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify 317 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify
318 text-overflow type_name=TextOverflow 318 text-overflow type_name=TextOverflow
319 text-shadow interpolable, inherited, converter=convertShadow 319 text-shadow interpolable, inherited, converter=convertShadow
320 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA djust
320 text-transform inherited 321 text-transform inherited
321 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition 322 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T extUnderlinePosition
322 top interpolable, initial=initialOffset, converter=convertLengthOrAuto 323 top interpolable, initial=initialOffset, converter=convertLengthOrAuto
323 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction 324 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction
324 transform typedom_types=[Transform], keywords=[none], interpolable, custom_value 325 transform typedom_types=[Transform], keywords=[none], interpolable, custom_value
325 transform-origin interpolable, converter=convertTransformOrigin 326 transform-origin interpolable, converter=convertTransformOrigin
326 transform-style name_for_methods=TransformStyle3D 327 transform-style name_for_methods=TransformStyle3D
327 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable 328 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable
328 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable 329 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable
329 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable 330 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 -webkit-flex-wrap alias_for=flex-wrap 570 -webkit-flex-wrap alias_for=flex-wrap
570 -webkit-font-feature-settings alias_for=font-feature-settings 571 -webkit-font-feature-settings alias_for=font-feature-settings
571 -webkit-justify-content alias_for=justify-content 572 -webkit-justify-content alias_for=justify-content
572 -webkit-opacity alias_for=opacity 573 -webkit-opacity alias_for=opacity
573 -webkit-order alias_for=order 574 -webkit-order alias_for=order
574 -webkit-perspective alias_for=perspective 575 -webkit-perspective alias_for=perspective
575 -webkit-perspective-origin alias_for=perspective-origin 576 -webkit-perspective-origin alias_for=perspective-origin
576 -webkit-shape-image-threshold alias_for=shape-image-threshold 577 -webkit-shape-image-threshold alias_for=shape-image-threshold
577 -webkit-shape-margin alias_for=shape-margin 578 -webkit-shape-margin alias_for=shape-margin
578 -webkit-shape-outside alias_for=shape-outside 579 -webkit-shape-outside alias_for=shape-outside
580 -webkit-text-size-adjust alias_for=text-size-adjust
579 -webkit-transform alias_for=transform 581 -webkit-transform alias_for=transform
580 -webkit-transform-origin alias_for=transform-origin 582 -webkit-transform-origin alias_for=transform-origin
581 -webkit-transform-style alias_for=transform-style 583 -webkit-transform-style alias_for=transform-style
582 -webkit-transition alias_for=transition 584 -webkit-transition alias_for=transition
583 -webkit-transition-delay alias_for=transition-delay 585 -webkit-transition-delay alias_for=transition-delay
584 -webkit-transition-duration alias_for=transition-duration 586 -webkit-transition-duration alias_for=transition-duration
585 -webkit-transition-property alias_for=transition-property 587 -webkit-transition-property alias_for=transition-property
586 -webkit-transition-timing-function alias_for=transition-timing-function 588 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698