Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute-none-with-frame.html
blob262164e0c1ae2c14691a6e602e820f92c2e6e329
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 first two tables are empty boxes.">
6 <meta name="assert" content="The second table should have just two horizontal lines - one for the top edge of the table, one for the bottom edge.">
7 <meta name="assert" content="The third table should have just two vertical lines - one for the left edge of the table, one for the right edge.">
8 <style type="text/css">
9 td
11 height: 20px;
12 width: 20px;
14 </style>
15 </head>
16 <body>
17 <table rules="none" frame="box">
18 <tr>
19 <td></td>
20 <td></td>
21 </tr>
22 <tr>
23 <td></td>
24 <td></td>
25 </tr>
26 <tr>
27 <td></td>
28 <td></td>
29 </tr>
30 </table>
31 <br>
32 <table rules="none" frame="border">
33 <tr>
34 <td></td>
35 <td></td>
36 </tr>
37 <tr>
38 <td></td>
39 <td></td>
40 </tr>
41 <tr>
42 <td></td>
43 <td></td>
44 </tr>
45 </table>
46 <br>
47 <table rules="none" frame="hsides">
48 <tr>
49 <td></td>
50 <td></td>
51 </tr>
52 <tr>
53 <td></td>
54 <td></td>
55 </tr>
56 <tr>
57 <td></td>
58 <td></td>
59 </tr>
60 </table>
61 <br>
62 <table rules="none" frame="vsides">
63 <tr>
64 <td></td>
65 <td></td>
66 </tr>
67 <tr>
68 <td></td>
69 <td></td>
70 </tr>
71 <tr>
72 <td></td>
73 <td></td>
74 </tr>
75 </table>
76 </body>
77 </html>