
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
37 lines
767 B
C++
37 lines
767 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibWeb/DOM/Node.h>
|
|
#include <LibWeb/DOM/NonDocumentTypeChildNode.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
class CharacterData
|
|
: public Node
|
|
, public NonDocumentTypeChildNode<CharacterData> {
|
|
public:
|
|
using WrapperType = Bindings::CharacterDataWrapper;
|
|
|
|
virtual ~CharacterData() override;
|
|
|
|
const String& data() const { return m_data; }
|
|
void set_data(String);
|
|
|
|
unsigned length() const { return m_data.length(); }
|
|
|
|
virtual String text_content() const override { return m_data; }
|
|
|
|
protected:
|
|
explicit CharacterData(Document&, NodeType, const String&);
|
|
|
|
private:
|
|
String m_data;
|
|
};
|
|
|
|
}
|