2023-04-05 23:00:08 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/XMLDocumentPrototype.h>
|
|
|
|
#include <LibWeb/DOM/XMLDocument.h>
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
|
|
|
XMLDocument::XMLDocument(JS::Realm& realm, AK::URL const& url)
|
|
|
|
: Document(realm, url)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void XMLDocument::initialize(JS::Realm& realm)
|
2023-04-05 23:00:08 +01:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2023-04-05 23:00:08 +01:00
|
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::XMLDocumentPrototype>(realm, "XMLDocument"));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|