/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::DOM { class CharacterData : public Node , public ChildNode , public NonDocumentTypeChildNode { public: using WrapperType = Bindings::CharacterDataWrapper; virtual ~CharacterData() override = default; const String& data() const { return m_data; } void set_data(String); unsigned length() const { return m_data.length(); } ExceptionOr substring_data(size_t offset, size_t count) const; ExceptionOr replace_data(size_t offset, size_t count, String const&); protected: explicit CharacterData(Document&, NodeType, const String&); private: String m_data; }; }