Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute-none-with-cell-borders.html
blob177d6afb97af58e73018dba79800ceeeec5adb3a
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' 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
9 border-collapse: collapse;
13 border-style: solid;
14 height: 2em;
15 width: 2em;
17 </style>
18 </head>
19 <body>
20 <table>
21 <tr>
22 <td></td>
23 <td></td>
24 </tr>
25 <tr>
26 <td></td>
27 <td></td>
28 </tr>
29 <tr>
30 <td></td>
31 <td></td>
32 </tr>
33 </table>
34 </body>
35 </html>