summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/conflicting-percent-widths-1-ref.html
blob: b16614284cf17f292b53c922af64d6770ca5210b (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
<!DOCTYPE HTML>
<html>
<head>
<title>Conflicting percent widths on table cells</title>
<style type="text/css">

table, td {
  border-spacing: 0;
  border: none;
  padding: 0;
}

</style>
</head>
<body>

<table>
  <tr>
    <td style="background: yellow" width="200">x</td>
    <td style="background: aqua" width="200">x</td>
  </tr>
  <tr>
    <td style="background: blue" width="200">x</td>
    <td style="background: fuchsia" width="200">x</td>
  </tr>
</table>

</body>
</html>