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

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: Rebased patch for landing 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 flex-wrap 182 flex-wrap
183 float type_name=EFloat, name_for_methods=Floating 183 float type_name=EFloat, name_for_methods=Floating
184 flood-color interpolable, svg, converter=convertColor 184 flood-color interpolable, svg, converter=convertColor
185 flood-opacity interpolable, svg, converter=convertNumberOrPercentage 185 flood-opacity interpolable, svg, converter=convertNumberOrPercentage
186 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation 186 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation
187 glyph-orientation-vertical inherited, svg, custom_value 187 glyph-orientation-vertical inherited, svg, custom_value
188 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize 188 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize
189 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow 189 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow
190 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize 190 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize
191 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition 191 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition
192 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLength
192 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition 193 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition
193 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition 194 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition
195 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLength
194 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition 196 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition
195 grid-template-areas runtime_flag=CSSGridLayout, custom_all 197 grid-template-areas runtime_flag=CSSGridLayout, custom_all
196 grid-template-columns runtime_flag=CSSGridLayout, custom_all 198 grid-template-columns runtime_flag=CSSGridLayout, custom_all
197 grid-template-rows runtime_flag=CSSGridLayout, custom_all 199 grid-template-rows runtime_flag=CSSGridLayout, custom_all
198 height interpolable, initial=initialSize, converter=convertLengthSizing 200 height interpolable, initial=initialSize, converter=convertLengthSizing
199 image-rendering inherited 201 image-rendering inherited
200 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation 202 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res pectImageOrientation, converter=convertImageOrientation
201 isolation runtime_flag=CSSCompositing 203 isolation runtime_flag=CSSCompositing
202 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData 204 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData
203 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData 205 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic al-spacing 458 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic al-spacing
457 border-style longhands=border-top-style;border-right-style;border-bottom-style;b order-left-style 459 border-style longhands=border-top-style;border-right-style;border-bottom-style;b order-left-style
458 border-top longhands=border-top-width;border-top-style;border-top-color 460 border-top longhands=border-top-width;border-top-style;border-top-color
459 border-width longhands=border-top-width;border-right-width;border-bottom-width;b order-left-width 461 border-width longhands=border-top-width;border-right-width;border-bottom-width;b order-left-width
460 flex longhands=flex-grow;flex-shrink;flex-basis 462 flex longhands=flex-grow;flex-shrink;flex-basis
461 flex-flow longhands=flex-direction;flex-wrap 463 flex-flow longhands=flex-direction;flex-wrap
462 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h eight;font-family 464 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h eight;font-family
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 465 grid runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-template-r ows;grid-template-areas;grid-auto-flow;grid-auto-columns;grid-auto-rows
464 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end 466 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end
465 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end 467 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end
468 grid-gap runtime_flag=CSSGridLayout, longhands=grid-column-gap;grid-row-gap
466 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end 469 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end
467 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t emplate-rows;grid-template-areas 470 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t emplate-rows;grid-template-areas
468 list-style longhands=list-style-type;list-style-position;list-style-image 471 list-style longhands=list-style-type;list-style-position;list-style-image
469 margin longhands=margin-top;margin-right;margin-bottom;margin-left 472 margin longhands=margin-top;margin-right;margin-bottom;margin-left
470 marker longhands=marker-start;marker-mid;marker-end 473 marker longhands=marker-start;marker-mid;marker-end
471 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro tation 474 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro tation
472 outline longhands=outline-color;outline-style;outline-width 475 outline longhands=outline-color;outline-style;outline-width
473 overflow longhands=overflow-x;overflow-y 476 overflow longhands=overflow-x;overflow-y
474 padding longhands=padding-top;padding-right;padding-bottom;padding-left 477 padding longhands=padding-top;padding-right;padding-bottom;padding-left
475 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay 478 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 -webkit-shape-margin alias_for=shape-margin 540 -webkit-shape-margin alias_for=shape-margin
538 -webkit-shape-outside alias_for=shape-outside 541 -webkit-shape-outside alias_for=shape-outside
539 -webkit-transform alias_for=transform 542 -webkit-transform alias_for=transform
540 -webkit-transform-origin alias_for=transform-origin 543 -webkit-transform-origin alias_for=transform-origin
541 -webkit-transform-style alias_for=transform-style 544 -webkit-transform-style alias_for=transform-style
542 -webkit-transition alias_for=transition 545 -webkit-transition alias_for=transition
543 -webkit-transition-delay alias_for=transition-delay 546 -webkit-transition-delay alias_for=transition-delay
544 -webkit-transition-duration alias_for=transition-duration 547 -webkit-transition-duration alias_for=transition-duration
545 -webkit-transition-property alias_for=transition-property 548 -webkit-transition-property alias_for=transition-property
546 -webkit-transition-timing-function alias_for=transition-timing-function 549 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698