| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-rows.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-rows.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-rows.html
|
| index ec0d2be3b5b77c2171e7e92fa8a0ea7e5d76f499..1586265a70cd1b95703567a06b1681c46845e42c 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-rows.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-rows.html
|
| @@ -21,8 +21,10 @@
|
| .gridAutoRepeatAndFixedAfter { grid-template-rows: repeat(auto-fit, [first] 30px [last]) [foo] minmax(60px, 80px) [bar] minmax(45px, max-content); }
|
| .gridAutoRepeatAndFixed { grid-template-rows: [start] repeat(2, 50px [a]) [middle] repeat(auto-fit, [autofoo] 15px [autobar]) minmax(5%, 10%) [end]; }
|
| .gridMultipleNames { grid-template-rows: [start] 20px [foo] 50% repeat(auto-fit, [bar] 20px [start foo]) [foo] 10% [end bar]; }
|
| +.gridMultipleTracks { grid-template-rows: [start] 20px repeat(auto-fit, [a] 2em [b c] 10% [d]) [e] minmax(75px, 1fr) [last]; }
|
|
|
| .item { background-color: cyan; }
|
| +.item:nth-child(2n) { background-color: green; }
|
|
|
| .gap { grid-row-gap: 20px; }
|
|
|
| @@ -145,4 +147,13 @@
|
| <div class="item" style="grid-row: foo / bar 2" data-offset-y="40" data-offset-x="0" data-expected-height="180" data-expected-width="25"></div>
|
| </div>
|
|
|
| +<div class="grid gridMultipleTracks">
|
| + <div class="item" style="grid-row: e / last;" data-offset-y="52" data-offset-x="0" data-expected-height="148" data-expected-width="25"></div>
|
| + <div class="item" style="grid-row: start / b;" data-offset-y="0" data-offset-x="0" data-expected-height="52" data-expected-width="25"></div>
|
| +</div>
|
| +
|
| +<div class="grid gridMultipleTracks gap">
|
| + <div class="item" style="grid-row: c / -1;" data-offset-y="40" data-offset-x="0" data-expected-height="160" data-expected-width="25"></div>
|
| +</div>
|
| +
|
| </body>
|
|
|