| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/text-based-repaint.js"></script> | 4 <script src="resources/text-based-repaint.js"></script> |
| 5 <script> | 5 <script> |
| 6 function repaintTest() | 6 function repaintTest() |
| 7 { | 7 { |
| 8 document.getElementById("inner").style.width = "0"; | 8 document.getElementById("inner").style.width = "0"; |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| 11 </head> | 11 </head> |
| 12 <body onload="runRepaintAndPixelTest()"> | 12 <body onload="runRepaintAndPixelTest()"> |
| 13 <div style="float: left; overflow: hidden; width: 100px; height: 100px; backgrou
nd-color: green;"> | 13 <div style="float: left; overflow: hidden; width: 100px; height: 100px; backgrou
nd-color: green;"> |
| 14 <div id="inner" style="width: 100px; height: 100px; background-color: red;">
</div> | 14 <div id="inner" style="width: 100px; height: 100px; background-color: red;">
</div> |
| 15 </div> | 15 </div> |
| 16 </body> | 16 </body> |
| 17 </html> | 17 </html> |
| OLD | NEW |