mirror of
https://github.com/RGBCube/serenity
synced 2025-07-04 15:17:35 +00:00
LibWeb: Port DOM::Node from DeprecatedString
This commit is contained in:
parent
89bbf53745
commit
a8f5ebeddd
8 changed files with 26 additions and 27 deletions
|
@ -106,7 +106,7 @@ String HTMLOptionElement::text() const
|
|||
// https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-text
|
||||
void HTMLOptionElement::set_text(String const& text)
|
||||
{
|
||||
string_replace_all(text.to_deprecated_string());
|
||||
string_replace_all(text);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/form-elements.html#concept-option-index
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue