mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
22 lines
560 B
C
22 lines
560 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2025, mikiubo <michele.uboldi@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibWeb/DOM/Document.h>
|
||
|
|
#include <LibWeb/DOM/Element.h>
|
||
|
|
#include <LibWeb/HTML/Parser/HTMLParser.h>
|
||
|
|
#include <LibWeb/XML/XMLDocumentBuilder.h>
|
||
|
|
|
||
|
|
namespace Web {
|
||
|
|
|
||
|
|
class XMLFragmentParser final {
|
||
|
|
public:
|
||
|
|
static WebIDL::ExceptionOr<Vector<GC::Root<DOM::Node>>> parse_xml_fragment(DOM::Element& context, StringView markup, HTML::HTMLParser::AllowDeclarativeShadowRoots = HTML::HTMLParser::AllowDeclarativeShadowRoots::No);
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|