mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Make style-rule iteration aware of CSSMediaRule
The logic is handled by `CSSGroupingRule` and `CSSConditionRule`, so `CSSMediaRule` only has to report if its condition matches. Right now, that condition is always false because we do not evaluate the media query.
This commit is contained in:
parent
df08b25b3f
commit
439d978ea5
Notes:
sideshowbarker
2024-07-18 02:54:59 +09:00
Author: https://github.com/AtkinsSJ
Commit: 439d978ea5
Pull-request: https://github.com/SerenityOS/serenity/pull/10400
Reviewed-by: https://github.com/Lubrsi
6 changed files with 49 additions and 3 deletions
|
@ -30,6 +30,8 @@ public:
|
|||
|
||||
virtual String condition_text() const override;
|
||||
virtual void set_condition_text(String) override;
|
||||
// FIXME: We need to evaluate() the query before matches() will work!
|
||||
virtual bool condition_matches() const override { return m_media->matches(); }
|
||||
|
||||
NonnullRefPtr<MediaList> const& media() const { return m_media; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue