LibWeb: Add CharacterData and Text IDL interfaces

This commit is contained in:
Andreas Kling 2020-08-03 20:50:45 +02:00
commit 73645e11c4
Notes: sideshowbarker 2024-07-19 04:20:43 +09:00
7 changed files with 36 additions and 6 deletions

View file

@ -34,6 +34,8 @@ namespace Web::DOM {
class Text final : public CharacterData {
public:
using WrapperType = Bindings::TextWrapper;
explicit Text(Document&, const String&);
virtual ~Text() override;