| 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: grid; | 7 display: grid; |
| 8 grid: 300px / 100px 100px; | 8 grid: 300px / 100px 100px; |
| 9 width: 200px; | 9 width: 200px; |
| 10 height: 300px; | 10 height: 300px; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 </style> | 37 </style> |
| 38 <p style="height: 20px">There should be no invalidations because justify-self st
yle change causes no visual change.</p> | 38 <p style="height: 20px">There should be no invalidations because justify-self st
yle change causes no visual change.</p> |
| 39 <div id="container"> | 39 <div id="container"> |
| 40 <div class="item1"> | 40 <div class="item1"> |
| 41 <div style="width: 100px;"></div> | 41 <div style="width: 100px;"></div> |
| 42 </div> | 42 </div> |
| 43 <div class="item2"></div> | 43 <div class="item2"></div> |
| 44 <div class="item3"></div> | 44 <div class="item3"></div> |
| 45 </div> | 45 </div> |
| OLD | NEW |