mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
14 lines
358 B
Text
14 lines
358 B
Text
#import <DOM/CharacterData.idl>
|
|
#import <DOM/Slottable.idl>
|
|
#import <HTML/HTMLSlotElement.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#text
|
|
[Exposed=Window]
|
|
interface Text : CharacterData {
|
|
constructor(optional DOMString data = "");
|
|
|
|
[NewObject] Text splitText(unsigned long offset);
|
|
readonly attribute DOMString wholeText;
|
|
};
|
|
|
|
Text includes Slottable;
|