mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
12 lines
265 B
HTML
12 lines
265 B
HTML
|
|
<!-- 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>
|