| Index: Source/core/css/parser/CSSPropertyParserTest.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParserTest.cpp b/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| index 4b19f349aee20d762eb7d5e316a7567b58a6cdc7..dc58ef3e9f609b957764f3feb1df5b032394f969 100644
|
| --- a/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParserTest.cpp
|
| @@ -34,14 +34,14 @@ TEST(CSSPropertyParserTest, GridTrackLimits)
|
| {CSSPropertyGridTemplateRows, "repeat(999999, 20px)", 999999},
|
| {CSSPropertyGridTemplateColumns, "repeat(1000000, 10%)", 1000000},
|
| {CSSPropertyGridTemplateRows, "repeat(1000000, 10%)", 1000000},
|
| - {CSSPropertyGridTemplateColumns, "repeat(1000000, (first) min-content (last))", 1000000},
|
| - {CSSPropertyGridTemplateRows, "repeat(1000000, (first) min-content (last))", 1000000},
|
| + {CSSPropertyGridTemplateColumns, "repeat(1000000, [first] min-content [last])", 1000000},
|
| + {CSSPropertyGridTemplateRows, "repeat(1000000, [first] min-content [last])", 1000000},
|
| {CSSPropertyGridTemplateColumns, "repeat(1000001, auto)", 1000000},
|
| {CSSPropertyGridTemplateRows, "repeat(1000001, auto)", 1000000},
|
| {CSSPropertyGridTemplateColumns, "repeat(400000, 2em minmax(10px, max-content) 0.5fr)", 999999},
|
| {CSSPropertyGridTemplateRows, "repeat(400000, 2em minmax(10px, max-content) 0.5fr)", 999999},
|
| - {CSSPropertyGridTemplateColumns, "repeat(600000, (first) 3vh 10% 2fr (nav) 10px auto 1fr 6em (last))", 999999},
|
| - {CSSPropertyGridTemplateRows, "repeat(600000, (first) 3vh 10% 2fr (nav) 10px auto 1fr 6em (last))", 999999},
|
| + {CSSPropertyGridTemplateColumns, "repeat(600000, [first] 3vh 10% 2fr [nav] 10px auto 1fr 6em [last])", 999999},
|
| + {CSSPropertyGridTemplateRows, "repeat(600000, [first] 3vh 10% 2fr [nav] 10px auto 1fr 6em [last])", 999999},
|
| {CSSPropertyGridTemplateColumns, "repeat(100000000000000000000, 10% 1fr)", 1000000},
|
| {CSSPropertyGridTemplateRows, "repeat(100000000000000000000, 10% 1fr)", 1000000},
|
| {CSSPropertyGridTemplateColumns, "repeat(100000000000000000000, 10% 5em 1fr auto auto 15px min-content)", 999999},
|
|
|