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

LibWeb: Add Range.detach

This commit is contained in:
Luke Wilde 2022-01-31 18:58:08 +00:00 committed by Andreas Kling
parent 8a755726ad
commit 4c08757ff9
2 changed files with 8 additions and 0 deletions

View file

@ -25,5 +25,6 @@ interface Range : AbstractRange {
short compareBoundaryPoints(unsigned short how, Range sourceRange);
Range cloneRange();
undefined detach();
};