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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed compilation error in mac and crash in linux/window that were reported by trybots. Created 6 years, 2 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 do not get their own enum and instead map 7 // Properties specifying alias_for do not get their own enum and instead map
8 // directly onto the CSSPropertyID they alias. Currently this means that the 8 // directly onto the CSSPropertyID they alias. Currently this means that the
9 // UseCounter will not pick up on these (crbug.com/304855) 9 // UseCounter will not pick up on these (crbug.com/304855)
10 10
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert FragmentIdentifier 205 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert FragmentIdentifier
206 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con vertFragmentIdentifier 206 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con vertFragmentIdentifier
207 mask svg, name_for_methods=MaskerResource, converter=convertFragmentIdentifier 207 mask svg, name_for_methods=MaskerResource, converter=convertFragmentIdentifier
208 mask-source-type runtime_flag=CSSMaskSourceType, custom_all 208 mask-source-type runtime_flag=CSSMaskSourceType, custom_all
209 mask-type svg 209 mask-type svg
210 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 210 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
211 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 211 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
212 min-height animatable, initial=initialMinSize, converter=convertLengthSizing 212 min-height animatable, initial=initialMinSize, converter=convertLengthSizing
213 min-width animatable, initial=initialMinSize, converter=convertLengthSizing 213 min-width animatable, initial=initialMinSize, converter=convertLengthSizing
214 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode 214 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode
215 nav-down type_name=StyleNavigationValue, initial=initialStyleNavigation, convert er=convertStyleNavigationValue
fs 2014/10/01 10:52:14 Might want to consider adding a runtime feature fo
216 nav-left type_name=StyleNavigationValue, initial=initialStyleNavigation, convert er=convertStyleNavigationValue
217 nav-right type_name=StyleNavigationValue, initial=initialStyleNavigation, conver ter=convertStyleNavigationValue
218 nav-up type_name=StyleNavigationValue, initial=initialStyleNavigation, converter =convertStyleNavigationValue
215 object-fit type_name=ObjectFit 219 object-fit type_name=ObjectFit
216 object-position animatable, converter=convertLengthPoint 220 object-position animatable, converter=convertLengthPoint
217 opacity animatable, type_name=float 221 opacity animatable, type_name=float
218 order type_name=int 222 order type_name=int
219 orphans animatable, inherited, type_name=short, custom_all 223 orphans animatable, inherited, type_name=short, custom_all
220 outline-color animatable, custom_all 224 outline-color animatable, custom_all
221 outline-offset animatable, converter=convertComputedLength<int> 225 outline-offset animatable, converter=convertComputedLength<int>
222 outline-style custom_all 226 outline-style custom_all
223 outline-width animatable, converter=convertLineWidth<unsigned short> 227 outline-width animatable, converter=convertLineWidth<unsigned short>
224 overflow-wrap inherited 228 overflow-wrap inherited
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 -webkit-flex-flow alias_for=flex-flow 532 -webkit-flex-flow alias_for=flex-flow
529 -webkit-flex-grow alias_for=flex-grow 533 -webkit-flex-grow alias_for=flex-grow
530 -webkit-flex-shrink alias_for=flex-shrink 534 -webkit-flex-shrink alias_for=flex-shrink
531 -webkit-flex-wrap alias_for=flex-wrap 535 -webkit-flex-wrap alias_for=flex-wrap
532 -webkit-justify-content alias_for=justify-content 536 -webkit-justify-content alias_for=justify-content
533 -webkit-opacity alias_for=opacity 537 -webkit-opacity alias_for=opacity
534 -webkit-order alias_for=order 538 -webkit-order alias_for=order
535 -webkit-shape-image-threshold alias_for=shape-image-threshold 539 -webkit-shape-image-threshold alias_for=shape-image-threshold
536 -webkit-shape-margin alias_for=shape-margin 540 -webkit-shape-margin alias_for=shape-margin
537 -webkit-shape-outside alias_for=shape-outside 541 -webkit-shape-outside alias_for=shape-outside
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698