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