Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / align-content-change-no-flex-expected.html
blob60f1276951ed018f03c02caf6b8d41fb3912e4a4
1 <!DOCTYPE HTML>
2 <style>
3 .container {
4 width: 200px;
5 height: 300px;
6 background-color: blue;
7 align-content: flex-end;
9 .item {
10 background-color: green;
11 border: solid thin blue;
13 </style>
14 There should be no invalidations when align-content changes on a non-flex container.
15 <div id="container">
16 <div class="item">
17 <div style="height: 100px"></div>
18 </div>
19 <div class="item">
20 <div style="height: 150px"></div>
21 </div>
22 </div>