| <!DOCTYPE html> |
| <html> |
| <link href="resources/grid.css" rel="stylesheet"> |
| <style> |
| .grid { |
| width: 100px; |
| height: 200px; |
| } |
| |
| #grid1 { |
| grid-template-columns: 30px; |
| grid-template-rows: minmax(20px, 80px) 160px; |
| } |
| |
| #grid2 { |
| grid-template-columns: 30px; |
| grid-template-rows: minmax(50%, 120px) minmax(20px, 40%); |
| } |
| |
| #grid3 { |
| grid-template-columns: 30px; |
| /* Overlapping range. */ |
| grid-template-rows: minmax(10px, 180px) minmax(30px, 150px); |
| } |
| |
| #grid4 { |
| grid-template-columns: 30px; |
| grid-template-rows: minmax(20px, 80px) 60px; |
| } |
| |
| #grid5 { |
| grid-template-columns: 30px; |
| /* 90% > 80px, 80px should be ignored. */ |
| grid-template-rows: minmax(90%, 80px) minmax(10px, 60%); |
| } |
| |
| #grid6 { |
| /* Overlapping range. */ |
| grid-template-columns: 30px; |
| grid-template-rows: minmax(10px, 180px) minmax(30px, 150px); |
| } |
| |
| .firstRowFirstColumn { |
| width: 100%; |
| height: 100%; |
| } |
| |
| .secondRowFirstColumn { |
| width: 100%; |
| height: 100%; |
| } |
| </style> |
| <script src="../../resources/check-layout.js"></script> |
| <body onload="checkLayout('.grid')"> |
| |
| <p><a href="https://webkit.org/b/104700">Bug 104700<a>: [CSS Grid Layout] Implement grid items sizing for fixed minmax grid tracks</p> |
| <p>Checks that a grid element with fixed minmax properly compute the logical height in several writing-mode.</p> |
| |
| <div class="grid" id="grid1" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="40" data-expected-width="30"></div> |
| <div class="secondRowFirstColumn" data-expected-height="160" data-expected-width="30"></div> |
| </div> |
| |
| <div class="grid" id="grid2" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="120" data-expected-width="30"></div> |
| <div class="secondRowFirstColumn" data-expected-height="80" data-expected-width="30"></div> |
| </div> |
| |
| <div class="grid" id="grid3" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="90" data-expected-width="30"></div> |
| <div class="secondRowFirstColumn" data-expected-height="110" data-expected-width="30"></div> |
| </div> |
| |
| <div class="grid verticalRL" id="grid4" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="30" data-expected-width="40"></div> |
| <div class="secondRowFirstColumn" data-expected-height="30" data-expected-width="60"></div> |
| </div> |
| |
| <div class="grid verticalLR" id="grid5" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="30" data-expected-width="90"></div> |
| <div class="secondRowFirstColumn" data-expected-height="30" data-expected-width="10"></div> |
| </div> |
| |
| <div class="grid horizontalBT" id="grid6" data-expected-width="100" data-expected-height="200"> |
| <div class="firstRowFirstColumn" data-expected-height="90" data-expected-width="30"></div> |
| <div class="secondRowFirstColumn" data-expected-height="110" data-expected-width="30"></div> |
| </div> |
| |
| </body> |
| </html> |