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

LibWeb: Add Node.parentNode and Node.parentElement to DOM API :^)

This commit is contained in:
Andreas Kling 2020-06-20 22:26:54 +02:00
parent 94fdf4fa5a
commit 94cf1f08ec
3 changed files with 22 additions and 0 deletions

View file

@ -5,6 +5,8 @@ interface Node : EventTarget {
readonly attribute Node? lastChild;
readonly attribute Node? previousSibling;
readonly attribute Node? nextSibling;
readonly attribute Node? parentNode;
readonly attribute Element? parentElement;
}