mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 03:56:16 +00:00
LibWeb: Port HTMLOutputElement from ByteString
This commit is contained in:
parent
7909475b14
commit
7ce3e113fa
Notes:
sideshowbarker
2024-07-17 00:53:02 +09:00
Author: https://github.com/shannonbooth
Commit: 7ce3e113fa
Pull-request: https://github.com/SerenityOS/serenity/pull/22261
1 changed files with 2 additions and 2 deletions
|
@ -23,9 +23,9 @@ class HTMLOutputElement final
|
||||||
public:
|
public:
|
||||||
virtual ~HTMLOutputElement() override;
|
virtual ~HTMLOutputElement() override;
|
||||||
|
|
||||||
ByteString const& type() const
|
String const& type() const
|
||||||
{
|
{
|
||||||
static ByteString output = "output";
|
static String const output = "output"_string;
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue