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

LibWeb: Implement Range.cloneContents()

This commit is contained in:
Andreas Kling 2022-03-22 20:03:09 +01:00
parent de6f7f0029
commit e1c71b3f91
3 changed files with 165 additions and 0 deletions

View file

@ -25,6 +25,7 @@ interface Range : AbstractRange {
short compareBoundaryPoints(unsigned short how, Range sourceRange);
[CEReactions, NewObject] DocumentFragment extractContents();
[CEReactions, NewObject] DocumentFragment cloneContents();
[CEReactions] undefined insertNode(Node node);
[CEReactions] undefined surroundContents(Node newParent);