1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:27:43 +00:00

LibWeb: Port ShadowRoot interface from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-09-06 14:52:53 +12:00 committed by Tim Flynn
parent 0ce5a920f7
commit 6789a2dd8e
5 changed files with 5 additions and 5 deletions

View file

@ -44,7 +44,7 @@ WebIDL::ExceptionOr<DeprecatedString> ShadowRoot::inner_html() const
}
// https://w3c.github.io/DOM-Parsing/#dom-innerhtml-innerhtml
WebIDL::ExceptionOr<void> ShadowRoot::set_inner_html(DeprecatedString const& markup)
WebIDL::ExceptionOr<void> ShadowRoot::set_inner_html(StringView markup)
{
TRY(DOMParsing::inner_html_setter(*this, markup));