LibWeb: Implement Text.splitText(offset)

With FIXMEs about updating live ranges, but still.
This commit is contained in:
Andreas Kling 2022-03-21 18:57:10 +01:00
commit d2f9f8bd4f
Notes: sideshowbarker 2024-07-17 16:59:20 +09:00
3 changed files with 53 additions and 0 deletions

View file

@ -2,4 +2,7 @@
interface Text : CharacterData {
constructor(optional DOMString data = "");
[NewObject] Text splitText(unsigned long offset);
};