| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <style> | 2 <style> |
| 3 body { | 3 body { |
| 4 margin: 0; | 4 margin: 0; |
| 5 } | 5 } |
| 6 #container { | 6 #container { |
| 7 display: flex; | 7 display: flex; |
| 8 align-content: stretch; | 8 align-content: stretch; |
| 9 flex-flow: row wrap; | 9 flex-flow: row wrap; |
| 10 width: 200px; | 10 width: 200px; |
| 11 height: 300px; | 11 height: 300px; |
| 12 background-color: red; | 12 background-color: red; |
| 13 } | 13 } |
| 14 .item { | 14 .item { |
| 15 background-color: green; | 15 background-color: green; |
| 16 border: solid thin blue; | 16 border: solid thin blue; |
| 17 width: 200px; | 17 width: 200px; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <p style="height: 20px">Tests invalidation on align-content style change. Passes
if there is no red.</p> | 20 <p style="height: 20px">Tests invalidation on align-content style change. Passes
if there is no red.</p> |
| 21 <div id="container"> | 21 <div id="container"> |
| 22 <div class="item"> | 22 <div class="item"> |
| 23 <div style="height: 50px"></div> | 23 <div style="height: 50px"></div> |
| 24 </div> | 24 </div> |
| 25 <div class="item"> | 25 <div class="item"> |
| 26 <div style="height: 50px"></div> | 26 <div style="height: 50px"></div> |
| 27 </div> | 27 </div> |
| 28 </div> | 28 </div> |
| OLD | NEW |