| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <style> | |
| 4 table { border-collapse: collapse; } | |
| 5 td { background: silver; width: 100px; height: 100px; } | |
| 6 </style> | |
| 7 </head> | |
| 8 <body> | |
| 9 <p> | |
| 10 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1135
9">http://bugs.webkit.org/show_bug.cgi?id=11359</a> | |
| 11 Incomplete repaint of table cell's collapsed border when changing only t
he cell</i>. | |
| 12 </p> | |
| 13 <table> | |
| 14 <tr> | |
| 15 <td></td> | |
| 16 <td style="border-bottom: 4px solid white; border-top: 10px solid wh
ite;"></td> | |
| 17 <td id="t1" style="border-left: 10px solid; border-right: 10px solid
; border-color: green"></td> | |
| 18 <td style="border-bottom: 6px solid white; border-top: 10px solid wh
ite;"></td> | |
| 19 </tr> | |
| 20 <tr> | |
| 21 <td style="border-left: 10px solid white; border-right: 4px solid wh
ite;"></td> | |
| 22 <td></td> | |
| 23 <td></td> | |
| 24 <td></td> | |
| 25 </tr> | |
| 26 <tr> | |
| 27 <td id="t2" style="border-top: 10px solid; border-bottom: 10px solid
; border-color: green"></td> | |
| 28 <td></td> | |
| 29 <td id="t3" style="border: 10px solid green;"></td> | |
| 30 <td></td> | |
| 31 </tr> | |
| 32 <tr> | |
| 33 <td style="border-left: 10px solid white; border-right: 6px solid wh
ite;"></td> | |
| 34 <td></td> | |
| 35 <td></td> | |
| 36 <td></td> | |
| 37 </tr> | |
| 38 </table> | |
| 39 </body> | |
| 40 </html> | |
| OLD | NEW |