| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 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 type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function repaintTest() | 5 function repaintTest() |
| 6 { | 6 { |
| 7 var target = document.getElementById('target'); | 7 var target = document.getElementById('target'); |
| 8 target.style.height = '100px'; | 8 target.style.height = '100px'; |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| 11 </head> | 11 </head> |
| 12 <body onload="runRepaintAndPixelTest();"> | 12 <body onload="runRepaintAndPixelTest();"> |
| 13 <p> | 13 <p> |
| 14 This is a test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13
209">http://bugs.webkit.org/show_bug.cgi?id=13209</a> | 14 This is a test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13
209">http://bugs.webkit.org/show_bug.cgi?id=13209</a> |
| 15 REGRESSION (r18756-18765): Incomplete list marker repaint when resizing
list item</i>. | 15 REGRESSION (r18756-18765): Incomplete list marker repaint when resizing
list item</i>. |
| 16 </p> | 16 </p> |
| 17 <p> | 17 <p> |
| 18 There should be only one bullet, at the bottom left of the rectangle. | 18 There should be only one bullet, at the bottom left of the rectangle. |
| 19 </p> | 19 </p> |
| 20 <ul> | 20 <ul> |
| 21 <li><img id="target" style="width: 100px; height: 50px;"></li> | 21 <li><img id="target" style="width: 100px; height: 50px;"></li> |
| 22 </ul> | 22 </ul> |
| 23 </body> | 23 </body> |
| OLD | NEW |