summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-html/cell-align-stopped-at-table-1-quirks.html
blob: 2d5a75f49fbaf75e1634086770a32f6844fe6056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<title>Testcase, bug 196292</title>
<meta charset="UTF-8">

<table border width="500">
  <tr>
    <td align="left">
      <p>Left</p>
      <table border width="300">
        <tr><th>Center</th></tr>
        <tr><td>Left</td></tr>
      </table>
    </td>
  </tr>
  <tr>
    <td align="center">
      <p>Center</p>
      <table border width="300">
        <tr><th>Center</th></tr>
        <tr><td>Left</td></tr>
      </table>
    </td>
  </tr>
  <tr>
    <td align="right">
      <p>Right</p>
      <table border width="300">
        <tr><th>Center</th></tr>
        <tr><td>Left</td></tr>
      </table>
    </td>
  </tr>