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

LibWeb: Implement Range.extractContents()

Another point on Acid3 coming through! :^)
This commit is contained in:
Andreas Kling 2022-03-21 18:06:28 +01:00
parent 24e25fe3d0
commit 16f4c76da6
3 changed files with 244 additions and 0 deletions

View file

@ -24,6 +24,8 @@ interface Range : AbstractRange {
const unsigned short END_TO_START = 3;
short compareBoundaryPoints(unsigned short how, Range sourceRange);
[CEReactions, NewObject] DocumentFragment extractContents();
Range cloneRange();
undefined detach();