blob: 54dfb4fd512816d05c8aa049c11d3933c47849a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!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>
|