OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>CSS Test: The 'rules' attribute and the 'frame' attribute</title> | 4 <title>CSS Test: The 'rules' attribute and the 'frame' attribute</title> |
5 <meta name="assert" content="The first table has four vertical lines cap
ped and bottomed by two horizontal lines."> | 5 <meta name="assert" content="The first table has four vertical lines cap
ped and bottomed by two horizontal lines."> |
6 <meta name="assert" content="The second table has 2 vertical lines."> | 6 <meta name="assert" content="The second table has 2 vertical lines."> |
7 <meta name="assert" content="The third table has 2 vertical lines capped
by a horizontal line."> | 7 <meta name="assert" content="The third table has 2 vertical lines capped
by a horizontal line."> |
8 <meta name="assert" content="The fourth table has 2 vertical lines botto
med by a horizontal line."> | 8 <meta name="assert" content="The fourth table has 2 vertical lines botto
med by a horizontal line."> |
9 <meta name="assert" content="The fifth table has 3 vertical lines."> | 9 <meta name="assert" content="The fifth table has 3 vertical lines."> |
10 <meta name="assert" content="The sixth table has 3 vertical lines."> | 10 <meta name="assert" content="The sixth table has 3 vertical lines."> |
11 <style type="text/css"> | 11 <style type="text/css"> |
12 td | 12 td |
13 { | 13 { |
14 height: 20px; | 14 height: 20px; |
15 width: 20px; | 15 width: 20px; |
16 } | 16 } |
17 </style> | 17 </style> |
18 <script> | 18 <script> |
19 if (window.testRunner) | 19 if (window.testRunner) |
20 testRunner.dumpAsText(true); | 20 testRunner.dumpAsTextWithPixelResults(); |
21 </script> | 21 </script> |
22 </head> | 22 </head> |
23 <body> | 23 <body> |
24 <table rules="cols" frame="box"> | 24 <table rules="cols" frame="box"> |
25 <tr> | 25 <tr> |
26 <td></td> | 26 <td></td> |
27 <td></td> | 27 <td></td> |
28 <td></td> | 28 <td></td> |
29 </tr> | 29 </tr> |
30 <tr> | 30 <tr> |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 <td></td> | 93 <td></td> |
94 </tr> | 94 </tr> |
95 <tr> | 95 <tr> |
96 <td></td> | 96 <td></td> |
97 <td></td> | 97 <td></td> |
98 <td></td> | 98 <td></td> |
99 </tr> | 99 </tr> |
100 </table> | 100 </table> |
101 </body> | 101 </body> |
102 </html> | 102 </html> |
OLD | NEW |