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

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: Unskipped some repaint tests and rebaselined. Created 4 years, 7 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode 108 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode
109 -webkit-locale inherited, font, custom_value 109 -webkit-locale inherited, font, custom_value
110 text-orientation inherited, custom_value, type_name=TextOrientation 110 text-orientation inherited, custom_value, type_name=TextOrientation
111 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation 111 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation
112 writing-mode inherited, custom_value, type_name=WritingMode 112 writing-mode inherited, custom_value, type_name=WritingMode
113 -webkit-writing-mode inherited, custom_value, type_name=WritingMode 113 -webkit-writing-mode inherited, custom_value, type_name=WritingMode
114 text-rendering inherited, font, type_name=TextRenderingMode 114 text-rendering inherited, font, type_name=TextRenderingMode
115 zoom custom_all 115 zoom custom_all
116 116
117 align-content initial=initialContentAlignment, converter=convertContentAlignment Data 117 align-content initial=initialContentAlignment, converter=convertContentAlignment Data
118 align-items initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignmen tData 118 align-items initial=initialDefaultAlignment, converter=convertSelfOrDefaultAlign mentData
119 alignment-baseline svg 119 alignment-baseline svg
120 align-self initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignment Data 120 align-self initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignment Data
121 animation-delay custom_all 121 animation-delay custom_all
122 animation-direction custom_all 122 animation-direction custom_all
123 animation-duration custom_all 123 animation-duration custom_all
124 animation-fill-mode custom_all 124 animation-fill-mode custom_all
125 animation-iteration-count custom_all 125 animation-iteration-count custom_all
126 animation-name custom_all 126 animation-name custom_all
127 animation-play-state custom_all 127 animation-play-state custom_all
128 animation-timing-function custom_all 128 animation-timing-function custom_all
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 -webkit-shape-margin alias_for=shape-margin 568 -webkit-shape-margin alias_for=shape-margin
569 -webkit-shape-outside alias_for=shape-outside 569 -webkit-shape-outside alias_for=shape-outside
570 -webkit-transform alias_for=transform 570 -webkit-transform alias_for=transform
571 -webkit-transform-origin alias_for=transform-origin 571 -webkit-transform-origin alias_for=transform-origin
572 -webkit-transform-style alias_for=transform-style 572 -webkit-transform-style alias_for=transform-style
573 -webkit-transition alias_for=transition 573 -webkit-transition alias_for=transition
574 -webkit-transition-delay alias_for=transition-delay 574 -webkit-transition-delay alias_for=transition-delay
575 -webkit-transition-duration alias_for=transition-duration 575 -webkit-transition-duration alias_for=transition-duration
576 -webkit-transition-property alias_for=transition-property 576 -webkit-transition-property alias_for=transition-property
577 -webkit-transition-timing-function alias_for=transition-timing-function 577 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698