mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 15:04:59 +00:00
8 lines
172 B
Text
8 lines
172 B
Text
#import <DOM/CharacterData.idl>
|
|
|
|
interface Text : CharacterData {
|
|
constructor(optional DOMString data = "");
|
|
|
|
[NewObject] Text splitText(unsigned long offset);
|
|
|
|
};
|