mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibWeb: Port ShadowRoot interface from DeprecatedString to String
This commit is contained in:
parent
0ce5a920f7
commit
6789a2dd8e
Notes:
sideshowbarker
2024-07-17 08:45:34 +09:00
Author: https://github.com/shannonbooth
Commit: 6789a2dd8e
Pull-request: https://github.com/SerenityOS/serenity/pull/20968
5 changed files with 5 additions and 5 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue