| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=15015 rdar://problem/
5420308</title> | 2 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=15015 rdar://problem/
5420308</title> |
| 3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | 3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> |
| 4 <script> | 4 <script> |
| 5 function repaintTest() | 5 function repaintTest() |
| 6 { | 6 { |
| 7 document.getElementById("float").appendChild(document.createElement(
"div")); | 7 document.getElementById("float").appendChild(document.createElement(
"div")); |
| 8 } | 8 } |
| 9 </script> | 9 </script> |
| 10 </head> | 10 </head> |
| 11 <body onload="runRepaintTest()"> | 11 <body onload="runRepaintAndPixelTest()"> |
| 12 <div style="width: 400px; height: 400px; border: solid;"> | 12 <div style="width: 400px; height: 400px; border: solid;"> |
| 13 <div id="float" style="float: left; width: 200px; height: 200px; overflo
w: hidden;"> | 13 <div id="float" style="float: left; width: 200px; height: 200px; overflo
w: hidden;"> |
| 14 </div> | 14 </div> |
| 15 </div> | 15 </div> |
| 16 </body> | 16 </body> |
| OLD | NEW |