LibWeb: Port HTMLTitleElement from ByteString

This commit is contained in:
Shannon Booth 2023-12-24 15:46:54 +13:00 committed by Andreas Kling
commit adb327d5d3
Notes: sideshowbarker 2024-07-17 06:38:11 +09:00
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ class HTMLTitleElement final : public HTMLElement {
public:
virtual ~HTMLTitleElement() override;
ByteString text();
String text() const;
void set_text(String const& value);
private: