mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Port HTMLOutputElement from ByteString
This commit is contained in:
committed by
Andreas Kling
parent
7909475b14
commit
7ce3e113fa
Notes:
sideshowbarker
2024-07-17 00:53:02 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/7ce3e113fa Pull-request: https://github.com/SerenityOS/serenity/pull/22261
@@ -23,9 +23,9 @@ class HTMLOutputElement final
|
||||
public:
|
||||
virtual ~HTMLOutputElement() override;
|
||||
|
||||
ByteString const& type() const
|
||||
String const& type() const
|
||||
{
|
||||
static ByteString output = "output";
|
||||
static String const output = "output"_string;
|
||||
return output;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user