1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

LibWeb/HTML: Implement text attribute in HTMLTitleElement

This commit is contained in:
Kemal Zebari 2023-12-01 18:59:08 -08:00 committed by Andreas Kling
parent d6df13af6a
commit 24b9d05ea8
5 changed files with 48 additions and 19 deletions

View file

@ -17,6 +17,9 @@ class HTMLTitleElement final : public HTMLElement {
public:
virtual ~HTMLTitleElement() override;
DeprecatedString text();
void set_text(String const& value);
private:
HTMLTitleElement(DOM::Document&, DOM::QualifiedName);