| OLD | NEW |
| 1 <!-- Based on fast/repaint/justify-content-change.html --> |
| 1 <!DOCTYPE HTML> | 2 <!DOCTYPE HTML> |
| 2 <script src="resources/text-based-repaint.js"></script> | 3 <script src="resources/paint-invalidation-test.js"></script> |
| 3 <script> | 4 <script> |
| 4 function repaintTest() { | 5 window.expectedPaintInvalidationObjects = [ |
| 6 "LayoutBlockFlow DIV class='item'", |
| 7 "LayoutBlockFlow DIV", |
| 8 "LayoutBlockFlow DIV class='item'", |
| 9 "LayoutBlockFlow DIV", |
| 10 ]; |
| 11 function paintInvalidationTest() { |
| 5 document.getElementById('container').style.justifyContent = 'space-between'; | 12 document.getElementById('container').style.justifyContent = 'space-between'; |
| 6 } | 13 } |
| 7 onload = runRepaintTest; | 14 onload = runPaintInvalidationTest; |
| 8 </script> | 15 </script> |
| 9 <style> | 16 <style> |
| 10 body { | 17 body { |
| 11 margin: 0; | 18 margin: 0; |
| 12 } | 19 } |
| 13 #container { | 20 #container { |
| 14 display: flex; | 21 display: flex; |
| 15 justify-content: space-around; | 22 justify-content: space-around; |
| 16 width: 200px; | 23 width: 200px; |
| 17 height: 300px; | 24 height: 300px; |
| 18 background-color: orange; | 25 background-color: orange; |
| 19 } | 26 } |
| 20 .item { | 27 .item { |
| 21 background-color: green; | 28 background-color: green; |
| 22 border: solid thin blue; | 29 border: solid thin blue; |
| 23 width: 50px; | 30 width: 50px; |
| 24 } | 31 } |
| 25 </style> | 32 </style> |
| 26 <p style="height: 20px">Tests invalidation on justify-content style change. Pass
es if only one big orange bar appear in the middle of the box.</p> | 33 <p style="height: 20px">Tests invalidation on justify-content style change. Pass
es if only one big orange bar appear in the middle of the box.</p> |
| 27 <div id="container"> | 34 <div id="container"> |
| 28 <div class="item"> | 35 <div class="item"> |
| 29 <div style="height: 50px"></div> | 36 <div style="height: 50px"></div> |
| 30 </div> | 37 </div> |
| 31 <div class="item"> | 38 <div class="item"> |
| 32 <div style="height: 50px"></div> | 39 <div style="height: 50px"></div> |
| 33 </div> | 40 </div> |
| 34 </div> | 41 </div> |
| OLD | NEW |