mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
LibWeb: Port HTMLFieldSetElement from DeprecatedString
This commit is contained in:
parent
cc43dbf56e
commit
2cf3819caf
Notes:
sideshowbarker
2024-07-17 03:35:16 +09:00
Author: https://github.com/shannonbooth
Commit: 2cf3819caf
Pull-request: https://github.com/SerenityOS/serenity/pull/22134
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