Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/the-details-element/details-pseudo-elements-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>Details pseudo-elements</title>
<link rel="match" href="details-pseudo-elements-002-ref.html">
<meta name="assert" content="Checks that the content-visibility property on the pseudo-element overrides the style attribute inside the shadow dom.">
<style>
details::details-content {
background: aqua;
display: block; /* override display: contents for slot */
content-visibility: visible;
}
</style>
<details>
<summary>The summary</summary>
<div>The details!</div>
</details>