LibWeb/CSS: Implement the CSSImportRule.media attribute

This commit is contained in:
Tim Ledbetter 2025-04-02 09:39:51 +01:00 committed by Sam Atkins
parent b93d2b7be2
commit cbb169820a
Notes: github-actions[bot] 2025-04-02 13:56:35 +00:00
3 changed files with 11 additions and 1 deletions

View file

@ -31,6 +31,7 @@ public:
CSSStyleSheet* loaded_style_sheet() { return m_style_sheet; }
CSSStyleSheet const* loaded_style_sheet() const { return m_style_sheet; }
GC::Ptr<MediaList> media() const;
CSSStyleSheet* style_sheet_for_bindings() { return m_style_sheet; }
Optional<String> supports_text() const;