| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-columns.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-columns.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-columns.html
|
| index c292e72ba66de9b856643787e5c2c66089597d05..df8dc63eac464244fb6f77add91e05f12d14f637 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-columns.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-fit-columns.html
|
| @@ -17,8 +17,10 @@
|
| .gridAutoRepeatAndFixedAfter { grid-template-columns: repeat(auto-fit, [first] 30px [last]) [foo] minmax(60px, 80px) [bar] minmax(45px, max-content); }
|
| .gridAutoRepeatAndFixed { grid-template-columns: [start] repeat(2, 50px [a]) [middle] repeat(auto-fit, [autofoo] 15px [autobar]) minmax(5%, 10%) [end]; }
|
| .gridMultipleNames { grid-template-columns: [start] 20px [foo] 50% repeat(auto-fit, [bar] 20px [start foo]) [foo] 10% [end bar]; }
|
| +.gridMultipleTracks { grid-template-columns: [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-column-gap: 20px; }
|
|
|
| @@ -141,4 +143,13 @@
|
| <div class="item" style="grid-column: foo / bar 2" data-offset-x="40" data-offset-y="0" data-expected-width="180" data-expected-height="25"></div>
|
| </div>
|
|
|
| +<div class="grid gridMultipleTracks">
|
| + <div class="item" style="grid-column: e / last;" data-offset-x="52" data-offset-y="0" data-expected-width="148" data-expected-height="25"></div>
|
| + <div class="item" style="grid-column: start / b;" data-offset-x="0" data-offset-y="25" data-expected-width="52" data-expected-height="25"></div>
|
| +</div>
|
| +
|
| +<div class="grid gridMultipleTracks gap">
|
| + <div class="item" style="grid-column: c / -1;" data-offset-x="40" data-offset-y="0" data-expected-width="160" data-expected-height="25"></div>
|
| +</div>
|
| +
|
| </body>
|
|
|