LibWeb: Implement matches attribute on CSSSupportsRule and CSSMediaRule

Gains us 4 WPT tests.
This commit is contained in:
Callum Law 2025-07-11 17:09:30 +12:00 committed by Jelle Raaijmakers
commit 1a0d4487a8
Notes: github-actions[bot] 2025-07-11 08:58:53 +00:00
7 changed files with 132 additions and 0 deletions

View file

@ -3,4 +3,5 @@
// https://drafts.csswg.org/css-conditional-3/#the-csssupportsrule-interface
[Exposed=Window]
interface CSSSupportsRule : CSSConditionRule {
readonly attribute boolean matches;
};