| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Reduction</title> | 3 <title>Reduction</title> |
| 4 <style> | 4 <style> |
| 5 #content-container { | 5 #content-container { |
| 6 position:absolute; | 6 position:absolute; |
| 7 top:48px; | 7 top:48px; |
| 8 bottom:0; | 8 bottom:0; |
| 9 left:0; | 9 left:0; |
| 10 right:0; | 10 right:0; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 right:20px; | 50 right:20px; |
| 51 width:80px; | 51 width:80px; |
| 52 } | 52 } |
| 53 </style> | 53 </style> |
| 54 </head> | 54 </head> |
| 55 | 55 |
| 56 <script src="../../fast/repaint/resources/repaint.js"></script> | 56 <script src="../../fast/repaint/resources/repaint.js"></script> |
| 57 | 57 |
| 58 <script> | 58 <script> |
| 59 if (window.testRunner) { | 59 if (window.testRunner) { |
| 60 testRunner.dumpAsText(true); | 60 testRunner.dumpAsTextWithPixelResults(); |
| 61 testRunner.waitUntilDone(); | 61 testRunner.waitUntilDone(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 function repaintTest() { | 64 function repaintTest() { |
| 65 if (window.testRunner) | 65 if (window.testRunner) |
| 66 testRunner.display(); | 66 testRunner.display(); |
| 67 | 67 |
| 68 document.getElementById('overflow').scrollTop = 30; | 68 document.getElementById('overflow').scrollTop = 30; |
| 69 if (window.testRunner) | 69 if (window.testRunner) |
| 70 testRunner.display(); | 70 testRunner.display(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 87 | 87 |
| 88 <div style="background-color:purple; width:50px; height:300p
x;"></div> | 88 <div style="background-color:purple; width:50px; height:300p
x;"></div> |
| 89 <br/> | 89 <br/> |
| 90 <div style="width:500px; height:50px; background-color:green
;"></div> | 90 <div style="width:500px; height:50px; background-color:green
;"></div> |
| 91 </div> | 91 </div> |
| 92 </div> | 92 </div> |
| 93 </div> | 93 </div> |
| 94 </div> | 94 </div> |
| 95 </body> | 95 </body> |
| 96 </html> | 96 </html> |
| OLD | NEW |