ladybird/Tests/LibWeb/Ref/expected/css-open-closed-selectors-ref.html
Luke Warlow 7c9a162f99 LibWeb: Remove :closed pseudo class
This was removed from the spec.
2024-12-06 04:49:36 +00:00

14 lines
233 B
HTML

<!doctype html>
<style>
.open {
color: green;
}
</style>
<details open class="open">
<summary>Hi</summary>
Well hello friends!
</details>
<details>
<summary>Hi</summary>
Well hello friends!
</details>