| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| table { | |
| border-collapse: collapse; | |
| } | |
| a:link, | |
| a:visited, | |
| a:link:hover, | |
| a:visited:hover { | |
| text-decoration: underline; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| This next test makes sure that grown repaint rects interact nicely with table border-collapse:collapse. | |
| <table border="1"> | |
| <tbody> | |
| <tr> | |
| <td>C</td> | |
| <td><a id="l" href="http://www.apple.com/">1</a></td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </body> | |
| </html> |