mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-11 13:42:52 +00:00
10 lines
226 B
Text
10 lines
226 B
Text
#import <DOM/CharacterData.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#text
|
|
[Exposed=Window]
|
|
interface Text : CharacterData {
|
|
constructor(optional DOMString data = "");
|
|
|
|
[NewObject] Text splitText(unsigned long offset);
|
|
|
|
};
|