2021-04-06 17:06:23 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-06 17:06:23 +01:00
|
|
|
*/
|
|
|
|
|
2022-12-13 13:24:27 +01:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2024-04-27 12:09:58 +12:00
|
|
|
#include <LibWeb/Bindings/ProcessingInstructionPrototype.h>
|
2022-12-13 13:24:27 +01:00
|
|
|
#include <LibWeb/DOM/Document.h>
|
2021-04-06 17:06:23 +01:00
|
|
|
#include <LibWeb/DOM/ProcessingInstruction.h>
|
|
|
|
#include <LibWeb/Layout/TextNode.h>
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DEFINE_ALLOCATOR(ProcessingInstruction);
|
|
|
|
|
2023-12-24 15:41:50 +13:00
|
|
|
ProcessingInstruction::ProcessingInstruction(Document& document, String const& data, String const& target)
|
|
|
|
: CharacterData(document, NodeType::PROCESSING_INSTRUCTION_NODE, data)
|
2021-04-06 17:06:23 +01:00
|
|
|
, m_target(target)
|
|
|
|
{
|
2023-01-10 06:28:20 -05:00
|
|
|
}
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void ProcessingInstruction::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(ProcessingInstruction);
|
2021-04-06 17:06:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|