Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / align-content-change-no-flex.html
blobb7a1ce37b72244d546ca9441f80e34057a8621f4
1 <!-- Based on fast/repaint/align-content-change-no-flex.html -->
2 <!DOCTYPE HTML>
3 <script src="resources/paint-invalidation-test.js"></script>
4 <script>
5 window.expectedPaintInvalidationObjects = [
6 ];
7 function paintInvalidationTest() {
8 document.getElementById('container').style.alignContent = 'flex-end';
10 onload = runPaintInvalidationTest;
11 </script>
12 <style>
13 .container {
14 width: 200px;
15 height: 300px;
16 background-color: blue;
18 .item {
19 background-color: green;
20 border: solid thin blue;
22 </style>
23 There should be no invalidations when align-content changes on a non-flex container.
24 <div id="container">
25 <div class="item">
26 <div style="height: 100px"></div>
27 </div>
28 <div class="item">
29 <div style="height: 150px"></div>
30 </div>
31 </div>