diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-10-08 17:48:14 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-08 23:02:57 +0200 |
commit | 57a25139a553d94d89f899eb93ca054301131be1 (patch) | |
tree | 365eb028d6c1e0fc8257450ce1739371d072cb1b /Userland/Libraries/LibWeb/Forward.h | |
parent | 439d978ea52318bad67ff9097fa4551f1f14ece5 (diff) | |
download | serenity-57a25139a553d94d89f899eb93ca054301131be1.zip |
LibWeb: Implement `@supports` rule :^)
The main thing missing is that we don't serialize the supports clause,
but for actually using a `@supports (something: cool) {}` rule in CSS,
it works!
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index cdc6d6a33b..4d01a66e97 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -26,6 +26,7 @@ class CSSRuleList; class CSSStyleDeclaration; class CSSStyleRule; class CSSStyleSheet; +class CSSSupportsRule; class Display; class ElementInlineCSSStyleDeclaration; class Length; |