| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | 2 <script src="../../fast/repaint/resources/repaint.js"></script> |
| 3 <style> | 3 <style> |
| 4 #flexbox { | 4 #flexbox { |
| 5 display: flex; | 5 display: flex; |
| 6 flex-flow: column-reverse; | 6 flex-flow: column-reverse; |
| 7 width: 200px; | 7 width: 200px; |
| 8 } | 8 } |
| 9 .flex-item { | 9 .flex-item { |
| 10 height: 30px; | 10 height: 30px; |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 window.enablePixelTesting = true; | 26 window.enablePixelTesting = true; |
| 27 runRepaintTest(); | 27 runRepaintTest(); |
| 28 }; | 28 }; |
| 29 </script> | 29 </script> |
| 30 <div id="flexbox"> | 30 <div id="flexbox"> |
| 31 <div id="blue" class="flex-item" style="background-color: blue;"></div> | 31 <div id="blue" class="flex-item" style="background-color: blue;"></div> |
| 32 <div id="green" class="flex-item" style="background-color: green;"></div> | 32 <div id="green" class="flex-item" style="background-color: green;"></div> |
| 33 <div id="yellow" class="flex-item" style="background-color: yellow;"></div> | 33 <div id="yellow" class="flex-item" style="background-color: yellow;"></div> |
| 34 </div> | 34 </div> |
| OLD | NEW |