1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:47:34 +00:00

LibWeb: Implement ChildNode.remove

This commit is contained in:
Luke Wilde 2021-09-29 16:25:48 +01:00 committed by Andreas Kling
parent 2202428ca4
commit 7bdf0be667
7 changed files with 49 additions and 1 deletions

View file

@ -6,4 +6,7 @@ interface CharacterData : Node {
readonly attribute Element? nextElementSibling;
readonly attribute Element? previousElementSibling;
// FIXME: This should come from a ChildNode mixin
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
};