Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug30332-2.html
blob444d64906a5c4e13b7b7907038c90d146a346f24
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5 <meta name="GENERATOR" content="Mozilla/4.72 [en] (Win98; I) [Netscape]">
6 <title>ROWSPAN = "0" Test Case</title>
7 </head>
9 <body>
11 BAD:<br><br>
12 <center>
13 <table BORDER = "5" COLS=1 WIDTH="100%" >
14 <tr>
15 <td ROWSPAN = "0">One</td>
16 </tr>
18 <tr>
19 <td>Two</td>
20 </tr>
21 </table>
22 </center>
24 <br>
25 <br>
27 GOOD:<br><br>
28 <center>
29 <table BORDER = "5"COLS=1 WIDTH="100%" >
30 <tr>
31 <td>One</td>
32 </tr>
34 <tr>
35 <td>Two</td>
36 </tr>
37 </table>
38 </center>
40 </body>
41 </html>