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

LibWeb: Add the StyleSheet.href attribute

This is only ever null at the moment, as we only set it on <style>
elements to begin with.
This commit is contained in:
Andreas Kling 2022-03-09 19:56:08 +01:00
parent 45f717cfad
commit 0e758b4da8
3 changed files with 10 additions and 4 deletions

View file

@ -26,6 +26,11 @@ public:
DOM::Element* owner_node() { return m_owner_node; }
void set_owner_node(DOM::Element*);
String href() const { return m_location; }
String location() const { return m_location; }
void set_location(String location) { m_location = move(location); }
String title() const { return m_title; }
void set_title(String title) { m_title = move(title); }
@ -51,6 +56,7 @@ private:
WeakPtr<CSSStyleSheet> m_parent_style_sheet;
String m_location;
String m_title;
String m_type_string;
String m_media_string;