1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:15:09 +00:00

LibWeb: Port HTMLFieldSetElement from DeprecatedString

This commit is contained in:
Shannon Booth 2023-11-26 11:21:41 +13:00 committed by Andreas Kling
parent cc43dbf56e
commit 2cf3819caf

View file

@ -22,9 +22,9 @@ class HTMLFieldSetElement final
public:
virtual ~HTMLFieldSetElement() override;
DeprecatedString const& type() const
String const& type() const
{
static DeprecatedString fieldset = "fieldset";
static String const fieldset = "fieldset"_string;
return fieldset;
}