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 two vertical lines capp
ed and bottomed by two horizontal lines."> | 5 <meta name="assert" content="The first table has two vertical lines capp
ed and bottomed by two horizontal lines."> |
6 <meta name="assert" content="The second table has four vertical lines."> | 6 <meta name="assert" content="The second table has four vertical lines."> |
7 <meta name="assert" content="The third table has four vertical lines cap
ped and bottomed by two horizontal lines."> | 7 <meta name="assert" content="The third table has four vertical lines cap
ped and bottomed by two horizontal lines."> |
8 <style type="text/css"> | 8 <style type="text/css"> |
9 td | 9 td |
10 { | 10 { |
11 height: 20px; | 11 height: 20px; |
12 width: 20px; | 12 width: 20px; |
13 } | 13 } |
14 </style> | 14 </style> |
15 <script> | 15 <script> |
16 if (window.testRunner) | 16 if (window.testRunner) |
17 testRunner.dumpAsText(true); | 17 testRunner.dumpAsTextWithPixelResults(); |
18 </script> | 18 </script> |
19 </head> | 19 </head> |
20 <body> | 20 <body> |
21 <table rules="cols" frame="hsides"> | 21 <table rules="cols" frame="hsides"> |
22 <tr> | 22 <tr> |
23 <td></td> | 23 <td></td> |
24 <td></td> | 24 <td></td> |
25 <td></td> | 25 <td></td> |
26 </tr> | 26 </tr> |
27 <tr> | 27 <tr> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 </tr> | 67 </tr> |
68 <tr> | 68 <tr> |
69 <td></td> | 69 <td></td> |
70 <td></td> | 70 <td></td> |
71 <td></td> | 71 <td></td> |
72 </tr> | 72 </tr> |
73 </table> | 73 </table> |
74 | 74 |
75 </body> | 75 </body> |
76 </html> | 76 </html> |
OLD | NEW |