1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

LibWeb: Port HTMLOutputElement from ByteString

This commit is contained in:
Shannon Booth 2023-12-24 15:39:43 +13:00 committed by Andreas Kling
parent 7909475b14
commit 7ce3e113fa

View file

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