LibWeb: Port DOM::Node from DeprecatedString

This commit is contained in:
Shannon Booth 2023-12-03 08:24:04 +13:00 committed by Andreas Kling
commit a8f5ebeddd
Notes: sideshowbarker 2024-07-17 11:30:05 +09:00
8 changed files with 26 additions and 27 deletions

View file

@ -38,14 +38,14 @@ void HTMLTitleElement::children_changed()
DeprecatedString HTMLTitleElement::text()
{
// The text attribute's getter must return this title element's child text content.
return child_text_content();
return child_text_content().to_deprecated_string();
}
// https://html.spec.whatwg.org/multipage/semantics.html#dom-title-text
void HTMLTitleElement::set_text(String const& value)
{
// The text attribute's setter must string replace all with the given value within this title element.
string_replace_all(value.to_deprecated_string());
string_replace_all(value);
}
}