1<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2<head>
3<script>
4
5function boom()
6{
7  document.getElementById("wantstobeatable").style.display = "table";
8  document.documentElement.removeAttribute("class");
9}
10
11</script>
12</head>
13
14<body onload="setTimeout(boom, 30)">
15
16<table width="100%" border="1">
17  <tr>
18    <td>
19      <table border="1" width="100%" style="table-layout: fixed;">
20        <tr>
21          <td>Foo</td>
22        </tr>
23      </table>
24    </td>
25    <td width="22">Bar</td>
26    <td id="wantstobeatable">
27      <table border="1" style="table-layout: fixed;">
28        <tr>
29          <td>Baz</td>
30        </tr>
31      </table>
32    </td>
33  </tr>
34</table>
35
36</body>
37
38</html>
39