Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / justify-content-distribution-change-grid-expected.html
blob67f3de13a948a6b67b7751cd342c25091790900c
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: stretch;
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 (distribution). Passes if there is no red.</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>