Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute.html
blob20242d3bc1985ea8bec628b8e71a7411cafe8898
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Table columns - HTML table 'rules' attribute on columns</title>
5 <meta name="assert" content="The outer edges of each table should have no borders.">
6 <meta name="assert" content="The first table should have two vertical lines interesecting two horizontal lines.">
7 <meta name="assert" content="The second vertical line in the first table should be all green.">
8 <meta name="assert" content="The horizontal lines in the third column of the first table should be all blue.">
9 <meta name="assert" content="The second table should have just two horizontal lines.">
10 <meta name="assert" content="The third table should have just two vertical lines.">
11 <style type="text/css">
12 table
14 border-collapse: collapse;
15 border-style: hidden;
17 .col1
19 border-style: none solid;
20 border-width: 1px;
22 .row
24 border-style: solid;
25 border-width: 1px;
29 height: 20px;
30 width: 20px;
32 </style>
33 </head>
34 <body>
35 <table rules="rows">
36 <tr>
37 <td></td>
38 <td></td>
39 <td></td>
40 </tr>
41 <tr>
42 <td></td>
43 <td></td>
44 <td></td>
45 </tr>
46 <tr>
47 <td></td>
48 <td></td>
49 <td></td>
50 </tr>
51 </table>
52 <br>
53 <table rules="cols">
54 <tr>
55 <td></td>
56 <td></td>
57 <td></td>
58 </tr>
59 <tr>
60 <td></td>
61 <td></td>
62 <td></td>
63 </tr>
64 <tr>
65 <td></td>
66 <td></td>
67 <td></td>
68 </tr>
69 </table>
70 <br>
71 <table rules="all">
72 <tr>
73 <td></td>
74 <td></td>
75 <td></td>
76 </tr>
77 <tr>
78 <td></td>
79 <td></td>
80 <td></td>
81 </tr>
82 <tr>
83 <td></td>
84 <td></td>
85 <td></td>
86 </tr>
87 </table>
88 </body>
89 </html>