1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibWeb: Evaluate @media rules

We now evaluate the conditions of `@media` rules at the same point in
the HTML event loop as evaluation of `MediaQueryList`s. This is not
strictly to spec, but since the spec doesn't actually say when to do
this, it seems to make the most sense. In any case, it works! :^)
This commit is contained in:
Sam Atkins 2021-10-08 20:21:46 +01:00 committed by Andreas Kling
parent 57a25139a5
commit 5098cd22a4
8 changed files with 47 additions and 2 deletions

View file

@ -22,6 +22,7 @@ public:
~CSSGroupingRule();
CSSRuleList const& css_rules() const { return m_rules; }
CSSRuleList& css_rules() { return m_rules; }
size_t insert_rule(StringView const& rule, size_t index = 0);
void delete_rule(size_t index);