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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSValueKeywords.json5

Issue 2620623002: Implement display:flow-root (Closed)
Patch Set: bug 672508 Created 3 years, 11 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 // The mode argument is used to limit the keyword to be used only for certain 2 // The mode argument is used to limit the keyword to be used only for certain
3 // CSSParserModes. Values that have the prefix -internal- are only allowed by 3 // CSSParserModes. Values that have the prefix -internal- are only allowed by
4 // CSSParserModes listed in allowInternalPropertyAndValue() 4 // CSSParserModes listed in allowInternalPropertyAndValue()
5 5
6 parameters: { 6 parameters: {
7 mode: {}, 7 mode: {},
8 }, 8 },
9 9
10 // 10 //
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 "katakana", 339 "katakana",
340 "hiragana-iroha", 340 "hiragana-iroha",
341 "katakana-iroha", 341 "katakana-iroha",
342 //none 342 //none
343 // 343 //
344 // display 344 // display
345 // The order of this enum must match the order found in CSSParserFastPaths::is ValidKeywordPropertyAndValue(). 345 // The order of this enum must match the order found in CSSParserFastPaths::is ValidKeywordPropertyAndValue().
346 // 346 //
347 "inline", 347 "inline",
348 "block", 348 "block",
349 "flow-root",
349 "list-item", 350 "list-item",
350 "inline-block", 351 "inline-block",
351 "table", 352 "table",
352 "inline-table", 353 "inline-table",
353 "table-row-group", 354 "table-row-group",
354 "table-header-group", 355 "table-header-group",
355 "table-footer-group", 356 "table-footer-group",
356 "table-row", 357 "table-row",
357 "table-column-group", 358 "table-column-group",
358 "table-column", 359 "table-column",
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 "recto", 1117 "recto",
1117 "verso", 1118 "verso",
1118 "avoid-column", 1119 "avoid-column",
1119 1120
1120 // shape 1121 // shape
1121 // rect 1122 // rect
1122 // round 1123 // round
1123 1124
1124 ] 1125 ]
1125 } 1126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698