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

LibWeb: Implement Document.importNode

This commit is contained in:
Luke Wilde 2021-09-26 17:41:51 +01:00 committed by Andreas Kling
parent 3252d984ae
commit 27dfd0170e
3 changed files with 13 additions and 0 deletions

View file

@ -41,6 +41,7 @@ interface Document : Node {
Range createRange();
Event createEvent(DOMString interface);
[CEReactions, NewObject] Node importNode(Node node, optional boolean deep = false);
[CEReactions, ImplementedAs=adopt_node_binding] Node adoptNode(Node node);
[ImplementedAs=style_sheets_for_bindings] readonly attribute StyleSheetList styleSheets;