mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
LibWeb: Add XMLDocument stub
Required by old versions of Pixi.js's XMLFormat bitmap font loader.
db824181dc/packages/text-bitmap/src/formats/XMLFormat.ts (L16)
This commit is contained in:
parent
3d0ac399c4
commit
1f863de9aa
Notes:
sideshowbarker
2024-07-16 21:11:57 +09:00
Author: https://github.com/Lubrsi
Commit: 1f863de9aa
Pull-request: https://github.com/SerenityOS/serenity/pull/18445
7 changed files with 59 additions and 1 deletions
25
Userland/Libraries/LibWeb/DOM/XMLDocument.cpp
Normal file
25
Userland/Libraries/LibWeb/DOM/XMLDocument.cpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* 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)
|
||||
{
|
||||
}
|
||||
|
||||
JS::ThrowCompletionOr<void> XMLDocument::initialize(JS::Realm& realm)
|
||||
{
|
||||
MUST_OR_THROW_OOM(Base::initialize(realm));
|
||||
set_prototype(&Bindings::ensure_web_prototype<Bindings::XMLDocumentPrototype>(realm, "XMLDocument"));
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue