mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00:00
LibWeb: Implement ChildNode.remove
This commit is contained in:
parent
2202428ca4
commit
7bdf0be667
7 changed files with 49 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <LibWeb/DOM/ChildNode.h>
|
||||
#include <LibWeb/DOM/Node.h>
|
||||
#include <LibWeb/DOM/NonDocumentTypeChildNode.h>
|
||||
|
||||
|
@ -14,6 +15,7 @@ namespace Web::DOM {
|
|||
|
||||
class CharacterData
|
||||
: public Node
|
||||
, public ChildNode<CharacterData>
|
||||
, public NonDocumentTypeChildNode<CharacterData> {
|
||||
public:
|
||||
using WrapperType = Bindings::CharacterDataWrapper;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue