blob: b649a8f56f95dd5fa657c19a447b4d02678df092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!-- This test needs to be in quirks mode -->
<body style="display: none; color: green">
<div style="color: red">
<table>
<tr><td>This should be green</td></tr>
</table>
</div>
<script>
document.body.offsetWidth;
document.body.style.display = "";
</script>
</body>
|