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

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

Issue 636993002: [CSS Grid Layout] Upgrade justify-content parsing to CSS3 Box Alignment spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 // 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 // start 495 // start
496 // end 496 // end
497 // center 497 // center
498 // justify 498 // justify
499 499
500 // box-lines 500 // box-lines
501 single 501 single
502 multiple 502 multiple
503 503
504 // align-content 504 // align-content
505 // start
506 // end
505 flex-start 507 flex-start
506 flex-end 508 flex-end
507 // center 509 // center
508 space-between 510 space-between
509 space-around 511 space-around
512 space-evenly
510 // stretch 513 // stretch
511 514
512 // align-items / align-self 515 // align-items / align-self
513 // flex-start 516 // flex-start
514 // flex-end 517 // flex-end
515 // center 518 // center
516 // baseline 519 // baseline
517 // stretch 520 // stretch
518 521
519 // justify-content 522 // justify-content
523 // start
524 // end
520 // flex-start 525 // flex-start
521 // flex-end 526 // flex-end
522 // center 527 // center
523 // space-between 528 // space-between
524 // space-around 529 // space-around
530 // space-evenly
531 // stretch
532
525 533
526 // flex-flow 534 // flex-flow
527 row 535 row
528 row-reverse 536 row-reverse
529 column 537 column
530 column-reverse 538 column-reverse
531 // nowrap 539 // nowrap
532 wrap 540 wrap
533 wrap-reverse 541 wrap-reverse
534 542
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 998
991 // will-change 999 // will-change
992 // auto 1000 // auto
993 contents 1001 contents
994 scroll-position 1002 scroll-position
995 1003
996 // all 1004 // all
997 // initial 1005 // initial
998 // inherit 1006 // inherit
999 unset 1007 unset
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698