mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:38:11 +00:00
LibWeb: Implement HTMLBaseElement.href
This commit is contained in:
parent
1f820f8840
commit
0a989d1bfd
3 changed files with 34 additions and 0 deletions
|
@ -17,6 +17,9 @@ public:
|
|||
HTMLBaseElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~HTMLBaseElement() override;
|
||||
|
||||
String href() const;
|
||||
void set_href(String const& href);
|
||||
|
||||
AK::URL const& frozen_base_url() const { return m_frozen_base_url; }
|
||||
|
||||
virtual void inserted() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue