LibWeb: Add simple implementation of Node.removeChild()

This commit is contained in:
Andreas Kling 2021-01-28 08:57:37 +01:00
commit a0bcfa30bf
Notes: sideshowbarker 2024-07-18 22:47:50 +09:00
3 changed files with 8 additions and 1 deletions

View file

@ -11,6 +11,6 @@ interface Node : EventTarget {
Node appendChild(Node node);
Node insertBefore(Node node, Node? child);
Node removeChild(Node child);
};