mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-07 00:29:47 +00:00
LibWeb: Port node text content to UTF-16
This commit is contained in:
parent
27a4c1eaf6
commit
5c561c1a53
Notes:
github-actions[bot]
2025-07-28 16:32:35 +00:00
Author: https://github.com/trflynn89
Commit: 5c561c1a53
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5627
Reviewed-by: https://github.com/gmta ✅
35 changed files with 147 additions and 123 deletions
|
@ -31,8 +31,8 @@ public:
|
|||
return output;
|
||||
}
|
||||
|
||||
String default_value() const;
|
||||
void set_default_value(String const&);
|
||||
Utf16String default_value() const;
|
||||
void set_default_value(Utf16String const&);
|
||||
|
||||
Utf16String value() const override;
|
||||
void set_value(Utf16String const&);
|
||||
|
@ -69,7 +69,7 @@ private:
|
|||
|
||||
GC::Ptr<DOM::DOMTokenList> m_html_for;
|
||||
|
||||
Optional<String> m_default_value_override {};
|
||||
Optional<Utf16String> m_default_value_override;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue