1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:47:46 +00:00

LibWeb: Add Node.insertBefore(Node node, Node? child)

This commit is contained in:
Andreas Kling 2020-06-21 16:45:21 +02:00
parent 82a75bcf5f
commit 213e2793bd
4 changed files with 43 additions and 0 deletions

View file

@ -9,5 +9,7 @@ interface Node : EventTarget {
readonly attribute Element? parentElement;
Node appendChild(Node node);
Node insertBefore(Node node, Node? child);
}