mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:47:44 +00:00
LibWeb: Port CharacterData from DeprecatedString to String
The existing implementation has some pre-existing issues where it is incorrectly assumes that byte offsets are given through the IDL instead of UTF-16 code units. While making these changes, leave some FIXMEs for that.
This commit is contained in:
parent
3b12a13f17
commit
b603e860af
18 changed files with 87 additions and 81 deletions
|
@ -140,7 +140,7 @@ void XMLDocumentBuilder::text(StringView data)
|
|||
auto& text_node = static_cast<DOM::Text&>(*last);
|
||||
text_builder.append(text_node.data());
|
||||
text_builder.append(data);
|
||||
text_node.set_data(text_builder.to_deprecated_string());
|
||||
text_node.set_data(MUST(text_builder.to_string()));
|
||||
text_builder.clear();
|
||||
} else {
|
||||
auto string = DeprecatedString::empty();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue