| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test for repaint on margin change</title> | 4 <title>Test for repaint on margin change</title> |
| 5 <style> | 5 <style> |
| 6 .child { | 6 .child { |
| 7 height: 20px; | 7 height: 20px; |
| 8 width: 20px; | 8 width: 20px; |
| 9 background-color: green; |
| 9 } | 10 } |
| 10 </style> | 11 </style> |
| 11 </head> | 12 </head> |
| 12 <body> | 13 <body> |
| 13 <div style="display: flex; flex-direction: column; height: 100%"> | 14 <div style="display: flex; flex-direction: column; height: 100%; background-
color: blue"> |
| 14 <div style="flex: 1"></div> | 15 <div style="flex: 1"></div> |
| 15 <div class='nested-row-flexbox'> | 16 <div class='nested-row-flexbox'> |
| 16 <div class="child"></div> | 17 <div class="child"></div> |
| 17 <div class="child" id="child-to-grow" style="margin-left: 40px"></di
v> | 18 <div class="child" id="child-to-grow" style="margin-left: 40px"></di
v> |
| 18 </div> | 19 </div> |
| 19 </div> | 20 </div> |
| 20 </body> | 21 </body> |
| 21 </html> | 22 </html> |
| OLD | NEW |