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

LibWeb: Implement Range.surroundContents(newParent)

Here goes another Acid3 point :^)
This commit is contained in:
Andreas Kling 2022-03-21 23:28:46 +01:00
parent 686507a38f
commit 8ab25f8d8c
3 changed files with 40 additions and 0 deletions

View file

@ -26,6 +26,7 @@ interface Range : AbstractRange {
[CEReactions, NewObject] DocumentFragment extractContents();
[CEReactions] undefined insertNode(Node node);
[CEReactions] undefined surroundContents(Node newParent);
Range cloneRange();
undefined detach();