mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 02:48:11 +00:00
LibWeb: Port HTMLFieldSetElement from DeprecatedString
This commit is contained in:
parent
cc43dbf56e
commit
2cf3819caf
1 changed files with 2 additions and 2 deletions
|
@ -22,9 +22,9 @@ class HTMLFieldSetElement final
|
||||||
public:
|
public:
|
||||||
virtual ~HTMLFieldSetElement() override;
|
virtual ~HTMLFieldSetElement() override;
|
||||||
|
|
||||||
DeprecatedString const& type() const
|
String const& type() const
|
||||||
{
|
{
|
||||||
static DeprecatedString fieldset = "fieldset";
|
static String const fieldset = "fieldset"_string;
|
||||||
return fieldset;
|
return fieldset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue