OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <style> | 3 <style> |
4 table { border-collapse: collapse; padding: 5px;} | 4 table { border-collapse: collapse; padding: 5px;} |
5 td { width: 20px; height: 20px;} | 5 td { width: 20px; height: 20px;} |
6 .bordered { border-left: 2px solid orange; border-right: 2px solid blue; border-
top: 2px solid green; border-bottom: 2px solid yellow;} | 6 .bordered { border-left: 2px solid orange; border-right: 2px solid blue; border-
top: 2px solid green; border-bottom: 2px solid yellow;} |
7 #space {height: 5px;} | 7 #space {height: 5px;} |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.testRunner) | 10 if (window.testRunner) |
11 testRunner.dumpAsText(true); | 11 testRunner.dumpAsTextWithPixelResults(); |
12 </script> | 12 </script> |
13 <body> | 13 <body> |
14 <!--Test for Bugzilla <a href="https://bugs.webkit.org/show_bug.cgi?id=76246">Bu
g 76246</a>: Incorrect rendering of borders on <col> with span > 1--> | 14 <!--Test for Bugzilla <a href="https://bugs.webkit.org/show_bug.cgi?id=76246">Bu
g 76246</a>: Incorrect rendering of borders on <col> with span > 1--> |
15 <!--The following tests verify the border-collapse behavior on tables with span
specified for col/colgroups.--> | 15 <!--The following tests verify the border-collapse behavior on tables with span
specified for col/colgroups.--> |
16 | 16 |
17 <!-- This table has a colgroup with span. Individual borders for the spanned cel
ls should not be painted. --> | 17 <!-- This table has a colgroup with span. Individual borders for the spanned cel
ls should not be painted. --> |
18 <table> | 18 <table> |
19 <colgroup></colgroup> | 19 <colgroup></colgroup> |
20 <colgroup span=3 style="border: 1px solid blue;"></colgroup> | 20 <colgroup span=3 style="border: 1px solid blue;"></colgroup> |
21 <colgroup></colgroup> | 21 <colgroup></colgroup> |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 <td></td> | 99 <td></td> |
100 <td></td> | 100 <td></td> |
101 <td></td> | 101 <td></td> |
102 <td></td> | 102 <td></td> |
103 <td></td> | 103 <td></td> |
104 <td></td> | 104 <td></td> |
105 </tr> | 105 </tr> |
106 </table> | 106 </table> |
107 </body> | 107 </body> |
108 </html> | 108 </html> |
OLD | NEW |