mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 09:26:28 +02:00
11 lines
226 B
Plaintext
11 lines
226 B
Plaintext
#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);
|
|
|
|
};
|