mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
LibWeb: Port HTMLTextAreaElement from DeprecatedString
This commit is contained in:
committed by
Andreas Kling
parent
a7b8828db2
commit
cc43dbf56e
Notes:
sideshowbarker
2024-07-17 08:27:05 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/cc43dbf56e Pull-request: https://github.com/SerenityOS/serenity/pull/22134
@@ -27,9 +27,9 @@ public:
|
||||
|
||||
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
||||
|
||||
DeprecatedString const& type() const
|
||||
String const& type() const
|
||||
{
|
||||
static DeprecatedString textarea = "textarea";
|
||||
static String const textarea = "textarea"_string;
|
||||
return textarea;
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ private:
|
||||
JS::GCPtr<DOM::Text> m_text_node;
|
||||
|
||||
bool m_dirty { false };
|
||||
DeprecatedString m_raw_value;
|
||||
String m_raw_value;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user