summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/655549-1.html
blob: 33fe2cce056857578cc5998bf933adc10c138b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!-- This test needs to be in quirks mode -->
<body style="color: red">
  <div>
    <table>
      <tr><td>This should be green</td></tr>
    </table>
  </div>
  <script>
    document.body.offsetWidth;
    document.body.style.color = "green";
  </script>
</body>