~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug11945.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<body bgcolor=#c0c0c0>
 
3
  <table border=10 cellspacing=10>
 
4
                <tr>
 
5
                        <td rowspan=2>cell1</td>
 
6
                        <td>cell2</td>
 
7
    </tr>
 
8
                <tr>
 
9
                </tr>
 
10
  </table>
 
11
 
 
12
        <p>See the behaviour when there is one more row:</p>
 
13
 
 
14
  <table border=10 cellspacing=10>
 
15
                <tr>
 
16
                        <td rowspan=2>cell1</td>
 
17
                        <td>cell2</td>
 
18
    </tr>
 
19
                <tr>
 
20
                </tr>
 
21
                <tr>
 
22
                        <td>cell3</td><td>cell4</td>
 
23
                </tr>
 
24
  </table>
 
25
 
 
26
        <p>Now move the rowspan to cell2 to have even more fun:</p>
 
27
 
 
28
        <table border=10 cellspacing=10>
 
29
                <tr>
 
30
                        <td>cell1</td>
 
31
                        <td rowspan=2>cell2</td>
 
32
    </tr>
 
33
                <tr>
 
34
                </tr>
 
35
                <tr>
 
36
                        <td>cell3</td><td>cell4</td>
 
37
                </tr>
 
38
  </table>
 
39
</body>
 
40
</html>