Mypal/layout/reftests/bugs/645768-1.html
2019-03-11 13:26:37 +03:00

13 lines
295 B
HTML

<!-- 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>