LibWeb: Expose Node.ownerDocument

Required by jQuery.
This commit is contained in:
Luke 2021-05-02 21:03:50 +01:00 committed by Andreas Kling
commit 8bafbdddc6
Notes: sideshowbarker 2024-07-18 18:46:00 +09:00
3 changed files with 11 additions and 0 deletions

View file

@ -13,6 +13,7 @@ interface Node : EventTarget {
readonly attribute Node? parentNode;
readonly attribute Element? parentElement;
readonly attribute boolean isConnected;
readonly attribute Document? ownerDocument;
attribute DOMString textContent;
Node appendChild(Node node);