1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00

LibWeb: Port HTMLParser::serialize_html_fragment from DeprecatedString

This commit is contained in:
Shannon Booth 2023-11-10 09:46:54 +13:00 committed by Andreas Kling
parent f2410071cd
commit a8fd4fab00
3 changed files with 8 additions and 8 deletions

View file

@ -58,7 +58,7 @@ public:
DOM::Document& document();
static Vector<JS::Handle<DOM::Node>> parse_html_fragment(DOM::Element& context_element, StringView);
static DeprecatedString serialize_html_fragment(DOM::Node const& node);
static String serialize_html_fragment(DOM::Node const& node);
enum class InsertionMode {
#define __ENUMERATE_INSERTION_MODE(mode) mode,