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

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

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing v3 Created 5 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 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 flex-wrap 181 flex-wrap
182 float type_name=EFloat, name_for_methods=Floating 182 float type_name=EFloat, name_for_methods=Floating
183 flood-color interpolable, svg, converter=convertColor 183 flood-color interpolable, svg, converter=convertColor
184 flood-opacity interpolable, svg, converter=convertNumberOrPercentage 184 flood-opacity interpolable, svg, converter=convertNumberOrPercentage
185 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation 185 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation
186 glyph-orientation-vertical inherited, svg, custom_value 186 glyph-orientation-vertical inherited, svg, custom_value
187 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize 187 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize
188 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow 188 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow
189 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize 189 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize
190 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition 190 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition
191 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLengthSizing
fs 2015/10/05 10:53:28 Why convertLengthSizing and not convertLength? (Di
svillar 2015/10/05 11:58:40 Yeah it should be convertLength()
191 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition 192 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition
192 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition 193 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition
194 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLengthSizing
193 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition 195 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition
194 grid-template-areas runtime_flag=CSSGridLayout, custom_all 196 grid-template-areas runtime_flag=CSSGridLayout, custom_all
195 grid-template-columns runtime_flag=CSSGridLayout, custom_all 197 grid-template-columns runtime_flag=CSSGridLayout, custom_all
196 grid-template-rows runtime_flag=CSSGridLayout, custom_all 198 grid-template-rows runtime_flag=CSSGridLayout, custom_all
197 height interpolable, initial=initialSize, converter=convertLengthSizing 199 height interpolable, initial=initialSize, converter=convertLengthSizing
198 image-rendering inherited 200 image-rendering inherited
199 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation 201 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation
200 isolation runtime_flag=CSSCompositing 202 isolation runtime_flag=CSSCompositing
201 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData 203 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData
202 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData 204 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic al-spacing 456 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic al-spacing
455 border-style longhands=border-top-style;border-right-style;border-bottom-style;b order-left-style 457 border-style longhands=border-top-style;border-right-style;border-bottom-style;b order-left-style
456 border-top longhands=border-top-width;border-top-style;border-top-color 458 border-top longhands=border-top-width;border-top-style;border-top-color
457 border-width longhands=border-top-width;border-right-width;border-bottom-width;b order-left-width 459 border-width longhands=border-top-width;border-right-width;border-bottom-width;b order-left-width
458 flex longhands=flex-grow;flex-shrink;flex-basis 460 flex longhands=flex-grow;flex-shrink;flex-basis
459 flex-flow longhands=flex-direction;flex-wrap 461 flex-flow longhands=flex-direction;flex-wrap
460 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h eight;font-family 462 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h eight;font-family
461 grid runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-template-r ows;grid-template-areas;grid-auto-flow;grid-auto-columns;grid-auto-rows 463 grid runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-template-r ows;grid-template-areas;grid-auto-flow;grid-auto-columns;grid-auto-rows
462 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end 464 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end
463 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end 465 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end
466 grid-gap runtime_flag=CSSGridLayout, longhands=grid-column-gap;grid-row-gap
464 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end 467 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end
465 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t emplate-rows;grid-template-areas 468 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t emplate-rows;grid-template-areas
466 list-style longhands=list-style-type;list-style-position;list-style-image 469 list-style longhands=list-style-type;list-style-position;list-style-image
467 margin longhands=margin-top;margin-right;margin-bottom;margin-left 470 margin longhands=margin-top;margin-right;margin-bottom;margin-left
468 marker longhands=marker-start;marker-mid;marker-end 471 marker longhands=marker-start;marker-mid;marker-end
469 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro tation 472 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro tation
470 outline longhands=outline-color;outline-style;outline-width 473 outline longhands=outline-color;outline-style;outline-width
471 overflow longhands=overflow-x;overflow-y 474 overflow longhands=overflow-x;overflow-y
472 padding longhands=padding-top;padding-right;padding-bottom;padding-left 475 padding longhands=padding-top;padding-right;padding-bottom;padding-left
473 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay 476 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 -webkit-shape-margin alias_for=shape-margin 538 -webkit-shape-margin alias_for=shape-margin
536 -webkit-shape-outside alias_for=shape-outside 539 -webkit-shape-outside alias_for=shape-outside
537 -webkit-transform alias_for=transform 540 -webkit-transform alias_for=transform
538 -webkit-transform-origin alias_for=transform-origin 541 -webkit-transform-origin alias_for=transform-origin
539 -webkit-transform-style alias_for=transform-style 542 -webkit-transform-style alias_for=transform-style
540 -webkit-transition alias_for=transition 543 -webkit-transition alias_for=transition
541 -webkit-transition-delay alias_for=transition-delay 544 -webkit-transition-delay alias_for=transition-delay
542 -webkit-transition-duration alias_for=transition-duration 545 -webkit-transition-duration alias_for=transition-duration
543 -webkit-transition-property alias_for=transition-property 546 -webkit-transition-property alias_for=transition-property
544 -webkit-transition-timing-function alias_for=transition-timing-function 547 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698