1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:37:37 +00:00

LibWeb: Add CSSMediaRule

This is the class corresponding to a `@media` rule. It contains a list
of media queries and a list of child css rules.
This commit is contained in:
Sam Atkins 2021-09-29 12:48:04 +01:00 committed by Andreas Kling
parent 8ac622f056
commit 3e74c194f9
6 changed files with 114 additions and 10 deletions

View file

@ -19,8 +19,9 @@ class Crypto;
namespace Web::CSS {
class CalculatedStyleValue;
class CSSRule;
class CSSImportRule;
class CSSMediaRule;
class CSSRule;
class CSSStyleDeclaration;
class CSSStyleRule;
class CSSStyleSheet;