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

Side by Side Diff: sky/engine/core/css/CSSValueKeywords.in

Issue 689853003: Remove CSS Grid Layout and grid media queries. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/css/CSSValue.cpp ('k') | sky/engine/core/css/MediaFeatureNames.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // 1 //
2 // CSS value names 2 // CSS value names
3 // 3 //
4 4
5 // The mode argument is used to limit the keyword to be used only for certain 5 // The mode argument is used to limit the keyword to be used only for certain
6 // CSSParserModes. Values that have the prefix -internal- are only allowed by 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by
7 // CSSParserModes listed in allowInternalPropertyAndValue() 7 // CSSParserModes listed in allowInternalPropertyAndValue()
8 8
9 inherit 9 inherit
10 initial 10 initial
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 //none 260 //none
261 // 261 //
262 // display 262 // display
263 // The order here must match the order of the EDisplay enum in RenderStyleConsta nts.h. 263 // The order here must match the order of the EDisplay enum in RenderStyleConsta nts.h.
264 // 264 //
265 inline 265 inline
266 block 266 block
267 inline-block 267 inline-block
268 flex 268 flex
269 inline-flex 269 inline-flex
270 grid
271 inline-grid
272 //none 270 //none
273 -webkit-flex 271
274 -webkit-inline-flex
275 // 272 //
276 // cursor 273 // cursor
277 // The order here must match the order of the ECursor enum in RenderStyleConstan ts.h. 274 // The order here must match the order of the ECursor enum in RenderStyleConstan ts.h.
278 // 275 //
279 auto 276 auto
280 crosshair 277 crosshair
281 default 278 default
282 pointer 279 pointer
283 move 280 move
284 vertical-text 281 vertical-text
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 433
437 // flex-flow 434 // flex-flow
438 row 435 row
439 row-reverse 436 row-reverse
440 column 437 column
441 column-reverse 438 column-reverse
442 // nowrap 439 // nowrap
443 wrap 440 wrap
444 wrap-reverse 441 wrap-reverse
445 442
446 // grid-auto-flow
447 dense
448 stack
449
450 // -internal-marquee-direction 443 // -internal-marquee-direction
451 forwards 444 forwards
452 backwards 445 backwards
453 ahead 446 ahead
454 // reverse 447 // reverse
455 // left 448 // left
456 // right 449 // right
457 up 450 up
458 down 451 down
459 // auto 452 // auto
(...skipping 25 matching lines...) Expand all
485 intrinsic 478 intrinsic
486 min-intrinsic 479 min-intrinsic
487 480
488 // 481 //
489 // CSS3 intrinsic dimension keywords 482 // CSS3 intrinsic dimension keywords
490 // 483 //
491 -webkit-min-content 484 -webkit-min-content
492 -webkit-max-content 485 -webkit-max-content
493 -webkit-fill-available 486 -webkit-fill-available
494 -webkit-fit-content 487 -webkit-fit-content
495 // Unprefixed for CSS Grid Layout.
496 min-content 488 min-content
497 max-content 489 max-content
498 490
499 // 491 //
500 // text-overflow 492 // text-overflow
501 // 493 //
502 clip 494 clip
503 ellipsis 495 ellipsis
504 496
505 // 497 //
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 balance 746 balance
755 747
756 // overflow 748 // overflow
757 -webkit-paged-x 749 -webkit-paged-x
758 -webkit-paged-y 750 -webkit-paged-y
759 751
760 // -webkit-app-region 752 // -webkit-app-region
761 drag 753 drag
762 no-drag 754 no-drag
763 755
764 // grid-{column|row}-{start|end}
765 span
766
767 // text-indent 756 // text-indent
768 each-line 757 each-line
769 //hanging // hanging exists in SVGCSSValueKeywords.in 758 //hanging // hanging exists in SVGCSSValueKeywords.in
770 759
771 // (scan:) media feature 760 // (scan:) media feature
772 progressive 761 progressive
773 interlace 762 interlace
774 763
775 // 764 //
776 // paint-order 765 // paint-order
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 811
823 // will-change 812 // will-change
824 // auto 813 // auto
825 contents 814 contents
826 scroll-position 815 scroll-position
827 816
828 // all 817 // all
829 // initial 818 // initial
830 // inherit 819 // inherit
831 unset 820 unset
OLDNEW
« no previous file with comments | « sky/engine/core/css/CSSValue.cpp ('k') | sky/engine/core/css/MediaFeatureNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698