From 7ce3e113fa218ac96f5c25c4e3d9839daa5be11b Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 24 Dec 2023 15:39:43 +1300 Subject: [PATCH] LibWeb: Port HTMLOutputElement from ByteString --- Userland/Libraries/LibWeb/HTML/HTMLOutputElement.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLOutputElement.h b/Userland/Libraries/LibWeb/HTML/HTMLOutputElement.h index 45d5925c25..4ed25de4c6 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLOutputElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLOutputElement.h @@ -23,9 +23,9 @@ class HTMLOutputElement final public: virtual ~HTMLOutputElement() override; - ByteString const& type() const + String const& type() const { - static ByteString output = "output"; + static String const output = "output"_string; return output; }