Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug7714.html
blob28edb2885558995dcc61f325c642b92763fa1915
1 <html>
2 <BODY>
4 <p>The table below should have two columns and a total of 7 cells,
5 arranged in an alternating/overlapping fashion. The cellspacing=0 for
6 this table. In Nav4.5, this example can be viewed. In 5.0 (jun08
7 win95), this example displays (apparently) as a simple 2x2 table
8 (i.e., some elements are not displayed at all). (The numbers are the
9 position of each TD in the HTML source).</p>
11 <table border="1" cellspacing="0" cellpadding="0">
12 <tr>
13 <td rowspan="2" height="40">1</td>
14 <td height="20">2</td>
15 </tr>
16 <tr>
17 <td rowspan="2" height="40">3</td>
18 </tr>
19 <tr>
20 <td rowspan="2" height="40">4</td>
21 </tr>
22 <tr>
23 <td rowspan="2" height="40">5</td>
24 </tr>
25 <tr>
26 <td rowspan="2" height="40">6</td>
27 </tr>
28 <tr>
29 <td height="20">7</td>
30 </tr>
31 </table>
33 <p>This is the same table as above, but cellspacing=5 in this case. For 5.0,
34 (jun08 win95) notice the odd cellspacing overlaps. See also bug #6304.</p>
36 <table border="1" cellspacing="5" cellpadding="0">
37 <tr>
38 <td rowspan="2" height="40">1</td>
39 <td height="20">2</td>
40 </tr>
41 <tr>
42 <td rowspan="2" height="40">3</td>
43 </tr>
44 <tr>
45 <td rowspan="2" height="40">4</td>
46 </tr>
47 <tr>
48 <td rowspan="2" height="40">5</td>
49 </tr>
50 <tr>
51 <td rowspan="2" height="40">6</td>
52 </tr>
53 <tr>
54 <td height="20">7</td>
55 </tr>
56 </table>
59 </body>
60 </html>