mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-08 20:22:55 +00:00
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
18 lines
439 B
C++
18 lines
439 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/DOM/ProcessingInstruction.h>
|
|
#include <LibWeb/Layout/TextNode.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
ProcessingInstruction::ProcessingInstruction(Document& document, DeprecatedString const& data, DeprecatedString const& target)
|
|
: CharacterData(document, NodeType::PROCESSING_INSTRUCTION_NODE, data)
|
|
, m_target(target)
|
|
{
|
|
}
|
|
|
|
}
|