Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / align-content-position-change-grid-expected.html
bloba4aec8de47d9124d09c50c1292473feb6115e0cb
1 <!DOCTYPE HTML>
2 <style>
3 body {
4 margin: 0;
6 #container {
7 display: grid;
8 grid-auto-columns: 200px;
9 grid-auto-rows: auto;
10 grid-auto-flow: row;
11 align-content: end;
12 width: 200px;
13 height: 300px;
14 background-color: orange;
16 .item {
17 background-color: green;
19 </style>
20 <p style="height: 20px">Tests invalidation on align-content style change (position). Passes if the orange half is on the top.</p>
21 <div id="container">
22 <div class="item">
23 <div style="height: 50px"></div>
24 </div>
25 <div class="item">
26 <div style="height: 50px"></div>
27 </div>
28 <div class="item">
29 <div style="height: 50px"></div>
30 </div>
31 </div>