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

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

Issue 1709963002: [css-align] New CSS Value 'normal' for Self Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applied suggested changes. Created 4 years, 9 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode 96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode
97 -webkit-locale inherited, font, custom_value 97 -webkit-locale inherited, font, custom_value
98 text-orientation inherited, custom_value, type_name=TextOrientation 98 text-orientation inherited, custom_value, type_name=TextOrientation
99 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation 99 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation
100 writing-mode inherited, custom_value, type_name=WritingMode 100 writing-mode inherited, custom_value, type_name=WritingMode
101 -webkit-writing-mode inherited, custom_value, type_name=WritingMode 101 -webkit-writing-mode inherited, custom_value, type_name=WritingMode
102 text-rendering inherited, font, type_name=TextRenderingMode 102 text-rendering inherited, font, type_name=TextRenderingMode
103 zoom custom_all 103 zoom custom_all
104 104
105 align-content initial=initialContentAlignment, converter=convertContentAlignment Data 105 align-content initial=initialContentAlignment, converter=convertContentAlignment Data
106 align-items initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignmen tData 106 align-items initial=initialDefaultAlignment, converter=convertSelfOrDefaultAlign mentData
107 alignment-baseline svg 107 alignment-baseline svg
108 align-self initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignment Data 108 align-self initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignment Data
109 animation-delay custom_all 109 animation-delay custom_all
110 animation-direction custom_all 110 animation-direction custom_all
111 animation-duration custom_all 111 animation-duration custom_all
112 animation-fill-mode custom_all 112 animation-fill-mode custom_all
113 animation-iteration-count custom_all 113 animation-iteration-count custom_all
114 animation-name custom_all 114 animation-name custom_all
115 animation-play-state custom_all 115 animation-play-state custom_all
116 animation-timing-function custom_all 116 animation-timing-function custom_all
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 -webkit-shape-margin alias_for=shape-margin 554 -webkit-shape-margin alias_for=shape-margin
555 -webkit-shape-outside alias_for=shape-outside 555 -webkit-shape-outside alias_for=shape-outside
556 -webkit-transform alias_for=transform 556 -webkit-transform alias_for=transform
557 -webkit-transform-origin alias_for=transform-origin 557 -webkit-transform-origin alias_for=transform-origin
558 -webkit-transform-style alias_for=transform-style 558 -webkit-transform-style alias_for=transform-style
559 -webkit-transition alias_for=transition 559 -webkit-transition alias_for=transition
560 -webkit-transition-delay alias_for=transition-delay 560 -webkit-transition-delay alias_for=transition-delay
561 -webkit-transition-duration alias_for=transition-duration 561 -webkit-transition-duration alias_for=transition-duration
562 -webkit-transition-property alias_for=transition-property 562 -webkit-transition-property alias_for=transition-property
563 -webkit-transition-timing-function alias_for=transition-timing-function 563 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698