
We no longer access Bindings::FooWrapper anywhere for a Foo platform object, so these can be removed :^)
31 lines
799 B
C++
31 lines
799 B
C++
/*
|
|
* 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&);
|
|
};
|
|
|
|
}
|