blob: 1fc6dd5522acbaea255f0d13c18ba4ab0a683fda (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!doctype html>
<title>Invalidation works properly across siblings on different slots</title>
<style>
.x { display: table-header-group; }
.x + * { color: green }
</style>
<details open="">
<summary class="x" id="a">Main summary</summary>
<summary>Should be green</summary>
</details>
|