| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link rel="stylesheet" href="resources/default.css"> | 4 <link rel="stylesheet" href="resources/default.css"> |
| 5 <style> | 5 <style> |
| 6 #outer { | 6 #outer { |
| 7 position: relative; | 7 position: relative; |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 height: 200px; | 9 height: 200px; |
| 10 } | 10 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 .red { | 25 .red { |
| 26 background-color: red; | 26 background-color: red; |
| 27 } | 27 } |
| 28 | 28 |
| 29 .green { | 29 .green { |
| 30 background-color: green; | 30 background-color: green; |
| 31 } | 31 } |
| 32 </style> | 32 </style> |
| 33 <script> | 33 <script> |
| 34 if (window.testRunner) { | 34 if (window.testRunner) { |
| 35 testRunner.dumpAsText(true); | 35 testRunner.dumpAsTextWithPixelResults(); |
| 36 testRunner.waitUntilDone(); | 36 testRunner.waitUntilDone(); |
| 37 } | 37 } |
| 38 | 38 |
| 39 function repaintTest() | 39 function repaintTest() |
| 40 { | 40 { |
| 41 window.location.hash = "#ucp"; | 41 window.location.hash = "#ucp"; |
| 42 if (window.testRunner) | 42 if (window.testRunner) |
| 43 testRunner.notifyDone(); | 43 testRunner.notifyDone(); |
| 44 } | 44 } |
| 45 | 45 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 61 <div id="outer"> | 61 <div id="outer"> |
| 62 <section> | 62 <section> |
| 63 <div class="innerWrapper"> | 63 <div class="innerWrapper"> |
| 64 <div class="red"></div> | 64 <div class="red"></div> |
| 65 <div id="ucp" class="green"></div> | 65 <div id="ucp" class="green"></div> |
| 66 </div> | 66 </div> |
| 67 </section> | 67 </section> |
| 68 </div> | 68 </div> |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |