123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/Bindings/PlatformObject.h>
- #include <LibWeb/DOM/Document.h>
- #include <LibWeb/DOM/ExceptionOr.h>
- #include <LibWeb/Forward.h>
- namespace Web::HTML {
- // https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#domparser
- class DOMParser final : public Bindings::PlatformObject {
- WEB_PLATFORM_OBJECT(DOMParser, Bindings::PlatformObject);
- public:
- static DOM::ExceptionOr<JS::NonnullGCPtr<DOMParser>> create_with_global_object(HTML::Window&);
- virtual ~DOMParser() override;
- JS::NonnullGCPtr<DOM::Document> parse_from_string(String const&, Bindings::DOMParserSupportedType type);
- private:
- explicit DOMParser(HTML::Window&);
- };
- }
- WRAPPER_HACK(DOMParser, Web::HTML)
|