blob: e00e6c52ff5e1b73f7f1ef5fe65bc244b266e523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML>
<title>Details pseudo-elements</title>
<!-- This test is (at time of writing) _EXTREMELY_ tentative. -->
<style>
div { background: aqua }
</style>
<details open>
<summary>The summary</summary>
<div>The details!</div>
</details>
|