mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibWeb: Implement HTMLStyleElement.sheet
This commit is contained in:
@@ -144,4 +144,11 @@ void HTMLStyleElement::update_a_style_block()
|
||||
sheet.release_nonnull());
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/cssom/#dom-linkstyle-sheet
|
||||
RefPtr<CSS::CSSStyleSheet> HTMLStyleElement::sheet() const
|
||||
{
|
||||
// The sheet attribute must return the associated CSS style sheet for the node or null if there is no associated CSS style sheet.
|
||||
return m_associated_css_style_sheet;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -23,6 +23,8 @@ public:
|
||||
|
||||
void update_a_style_block();
|
||||
|
||||
RefPtr<CSS::CSSStyleSheet> sheet() const;
|
||||
|
||||
private:
|
||||
// https://drafts.csswg.org/cssom/#associated-css-style-sheet
|
||||
RefPtr<CSS::CSSStyleSheet> m_associated_css_style_sheet;
|
||||
|
||||
@@ -4,4 +4,7 @@ interface HTMLStyleElement : HTMLElement {
|
||||
|
||||
[Reflect] attribute DOMString type;
|
||||
|
||||
// FIXME: This should come from a LinkStyle mixin
|
||||
readonly attribute CSSStyleSheet? sheet;
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user