summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/details-pseudo-elements-001.tentative.html
blob: 1a9f7d6a023832c1b106d67579bfbbec34a5c4f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<title>Details pseudo-elements</title>
<!-- This test is (at time of writing) _EXTREMELY_ tentative. -->
<link rel="match" href="details-pseudo-elements-001-ref.html">
<link rel="help" href="https://github.com/dbaron/details-styling">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1469418">
<style>

details::details-content {
  background: aqua;
  display: block; /* override display: contents for slot */
}

</style>

<details open>
  <summary>The summary</summary>
  <div>The details!</div>
</details>