blob: 08458829555aff71197891aae4aad5192eb050dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<link rel="help" href="https://crbug.com/1338779">
<table id="table">
<td>
<span id="span1"></span>
<div id="div">
<span id="span2"></span>
</div>
</td>
</table>
<script>
document.body.offsetLeft;
div.style.color = "green";
table.style.display = "table-column";
span2.replaceWith(span1);
</script>
|