12016-02-23 Manuel Rego Casasnovas <rego@igalia.com>
2
3 [css-grid] Rows track sizes are optional in grid-template shorthand
4 https://bugs.webkit.org/show_bug.cgi?id=154586
5
6 Reviewed by NOBODY (OOPS!).
7
8 You can omit the size of the rows in grid-template shorthand,
9 even if you specify a named grid line for the end of the row,
10 due to a change in the spec back in 2014:
11 https://github.com/w3c/csswg-drafts/commit/9f660c4183c73c1f5279c46904dc6cb314f76194
12
13 Before if you want to specify a named grid line,
14 you need to set the row size.
15
16 Update parsing, so it nows accepts things like:
17 grid-template: 100px / "a" [bottom];
18
19 * css/CSSParser.cpp:
20 (WebCore::CSSParser::parseGridTemplateRowsAndAreasAndColumns):
21 (WebCore::CSSParser::parseGridTemplateShorthand):
22