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:
parent
cc43dbf56e
commit
2cf3819caf
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue