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

LibWeb: Implement ParentNode.append

This commit is contained in:
Luke Wilde 2022-01-29 20:45:17 +00:00 committed by Andreas Kling
parent d5c96c3ccf
commit 34dfdc3f37
5 changed files with 21 additions and 0 deletions

View file

@ -10,6 +10,7 @@ interface DocumentFragment : Node {
readonly attribute unsigned long childElementCount;
[CEReactions, Unscopable] undefined prepend((Node or DOMString)... nodes);
[CEReactions, Unscopable] undefined append((Node or DOMString)... nodes);
Element? querySelector(DOMString selectors);
[NewObject] NodeList querySelectorAll(DOMString selectors);