LibWeb/CSS: Add :unchecked pseudo-class

This just got added to the Selectors spec:

b78c97c19d

It's thus missing from the HTML spec and WPT, but I figured it was
simple enough to add.
This commit is contained in:
Sam Atkins 2025-07-15 15:38:50 +01:00 committed by Jelle Raaijmakers
commit 632ce9523b
Notes: github-actions[bot] 2025-07-15 19:28:57 +00:00
6 changed files with 34 additions and 6 deletions

View file

@ -434,6 +434,7 @@ public:
bool matches_enabled_pseudo_class() const;
bool matches_disabled_pseudo_class() const;
bool matches_checked_pseudo_class() const;
bool matches_unchecked_pseudo_class() const;
bool matches_placeholder_shown_pseudo_class() const;
bool matches_link_pseudo_class() const;
bool matches_local_link_pseudo_class() const;