mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
LibWeb: Port HTMLBaseElement interface from DeprecatedString to String
This commit is contained in:
parent
2a732e6ddd
commit
c405ba6b08
3 changed files with 8 additions and 10 deletions
|
@ -16,8 +16,8 @@ class HTMLBaseElement final : public HTMLElement {
|
|||
public:
|
||||
virtual ~HTMLBaseElement() override;
|
||||
|
||||
DeprecatedString href() const;
|
||||
WebIDL::ExceptionOr<void> set_href(DeprecatedString const& href);
|
||||
String href() const;
|
||||
WebIDL::ExceptionOr<void> set_href(String const& href);
|
||||
|
||||
AK::URL const& frozen_base_url() const { return m_frozen_base_url; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue