summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/conflicting-percent-widths-1.html
blob: e998c8982abf3d58de6b0580a78f42e9e672da22 (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 width="400">
  <tr>
    <td style="background: yellow" width="50%">x</td>
    <td style="background: aqua">x</td>
  </tr>
  <tr>
    <td style="background: blue" width="25%">x</td>
    <td style="background: fuchsia">x</td>
  </tr>
</table>

</body>
</html>