| <!DOCTYPE html> |
| <link href="resources/grid.css" rel="stylesheet"> |
| <style> |
| |
| .grid { |
| -webkit-grid-auto-columns: 100px; |
| -webkit-grid-auto-rows: 50px; |
| width: 400px; |
| height: 300px; |
| /* Ensures that the grid container is the containing block of the absolutely positioned grid children. */ |
| position: relative; |
| } |
| |
| .absolute { |
| position: absolute; |
| } |
| |
| .seventhRowFourthColumn { |
| background-color: coral; |
| -webkit-grid-column: 4; |
| -webkit-grid-row: 7; |
| } |
| |
| </style> |
| <script src="../../resources/check-layout.js"></script> |
| <body onload="checkLayout('.grid')"> |
| |
| <p>This test checks that positioned items shouldn't create implicit tracks on the grid.</p> |
| |
| <div class="grid"> |
| <div class="sizedToGridArea absolute seventhRowFourthColumn" |
| data-offset-x="0" data-offset-y="0" data-expected-width="400" data-expected-height="300"> |
| </div> |
| <div class="autoRowAutoColumn" |
| data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="50"> |
| </div> |
| <div class="autoRowAutoColumn" |
| data-offset-x="0" data-offset-y="50" data-expected-width="100" data-expected-height="50"> |
| </div> |
| <div class="autoRowAutoColumn" |
| data-offset-x="0" data-offset-y="100" data-expected-width="100" data-expected-height="50"> |
| </div> |
| <div class="autoRowAutoColumn" |
| data-offset-x="0" data-offset-y="150" data-expected-width="100" data-expected-height="50"> |
| </div> |
| </div> |
| |
| </body> |