LibWeb: Implement HTMLBaseElement.href

This commit is contained in:
Luke Wilde 2022-06-19 15:45:09 +01:00 committed by Linus Groh
commit 0a989d1bfd
Notes: sideshowbarker 2024-07-17 10:04:33 +09:00
3 changed files with 34 additions and 0 deletions

View file

@ -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;