blob: 694ee6d7f70c9bca0a870357c124406b036660cb [file] [log] [blame]
robert@webkit.orgf911cc32012-08-25 16:20:23 +00001<!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' none attribute with cell borders</title>
5 <meta name="assert" content="The first table should have two vertical lines intersecting two horizontal lines.">
6 <style type="text/css">
7 table
8 {
9 border-collapse: collapse;
10 border-style: solid;
11 border-color: black;
12 }
13 td
14 {
15 border-width: 3px;
16 border-style: solid;
17 border-color: black;
18 height: 2em;
19 width: 2em;
20 }
21 </style>
22 </head>
23 <body>
24 <table rules="all">
25 <tr>
26 <td></td>
27 <td></td>
28 </tr>
29 <tr>
30 <td></td>
31 <td></td>
32 </tr>
33 <tr>
34 <td></td>
35 <td></td>
36 </tr>
37 </table>
38 </body>
39</html>