| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
| 4 if (window.testRunner) { | 4 if (window.internals) { |
| 5 testRunner.testRepaint(); | 5 window.internals.settings.setForceCompositingMode(true); |
| 6 testRunner.repaintSweepHorizontally(); | |
| 7 } | 6 } |
| 8 </script> | 7 </script> |
| 9 <style> | 8 <style> |
| 10 div.flexbox { | 9 div.flexbox { |
| 11 height: 80px; | 10 height: 80px; |
| 12 width: 80px; | 11 width: 80px; |
| 13 background-color: yellow; | 12 background-color: yellow; |
| 14 display: -moz-box; | 13 display: -moz-box; |
| 15 display: -webkit-box; | 14 display: -webkit-box; |
| 16 display: box; | 15 display: box; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 <div class="bigbox"></div> | 60 <div class="bigbox"></div> |
| 62 </div> | 61 </div> |
| 63 </div> | 62 </div> |
| 64 <div style="padding:10px; margin-top: 20px; margin-bottom: 40px;"> | 63 <div style="padding:10px; margin-top: 20px; margin-bottom: 40px;"> |
| 65 <div class="flexbox vertical"> | 64 <div class="flexbox vertical"> |
| 66 <div class="bigbox">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Et
iam et ipsum. Nam consectetuer mi eget velit.</div> | 65 <div class="bigbox">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Et
iam et ipsum. Nam consectetuer mi eget velit.</div> |
| 67 </div> | 66 </div> |
| 68 </div> | 67 </div> |
| 69 </body> | 68 </body> |
| 70 </html> | 69 </html> |
| OLD | NEW |