1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

LibWeb: Implement ChildNode.after

This commit is contained in:
Luke Wilde 2022-01-29 21:44:41 +00:00 committed by Andreas Kling
parent 1bbe40c5af
commit 5a5e3a6ec3
4 changed files with 58 additions and 0 deletions

View file

@ -56,6 +56,7 @@ interface Element : Node {
// FIXME: These should come from a ChildNode mixin
[CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
[CEReactions, Unscopable] undefined after((Node or DOMString)... nodes);
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
};