1
Fork 0
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:
Shannon Booth 2023-09-03 15:46:55 +12:00 committed by Tim Flynn
parent 2a732e6ddd
commit c405ba6b08
3 changed files with 8 additions and 10 deletions

View file

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