blob: 2406afd7466749c427809a467b2d338d0b233661 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!doctype html>
<table>
<tr>
<td><div style="display: contents">foo</div></td>
</tr>
</table>
<script>
document.body.offsetTop;
document.querySelector('div').style.color = "green";
</script>
|