13 lines
262 B
HTML
13 lines
262 B
HTML
<!doctype html>
|
|
<div id="wrapper" style="display: flex">
|
|
Some anon flex item.
|
|
<div id="item">
|
|
Foo bar.
|
|
<span> Baz</span>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
item.style.color = "red";
|
|
wrapper.firstChild.textContent = "";
|
|
</script>
|