LibWeb: Implement :nth-of-type and :nth-last-of-type selectors :^)

This commit is contained in:
Sam Atkins 2022-02-26 13:53:13 +00:00 committed by Andreas Kling
commit a57128467a
Notes: sideshowbarker 2024-07-17 18:13:59 +09:00
5 changed files with 57 additions and 18 deletions

View file

@ -62,13 +62,15 @@ public:
FirstChild,
LastChild,
OnlyChild,
NthChild,
NthLastChild,
Empty,
Root,
FirstOfType,
LastOfType,
OnlyOfType,
NthChild,
NthLastChild,
NthOfType,
NthLastOfType,
Disabled,
Enabled,
Checked,