mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-22 19:12:53 +00:00
14 lines
366 B
Text
14 lines
366 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);
|
|
[FIXME] readonly attribute DOMString wholeText;
|
|
};
|
|
|
|
Text includes Slottable;
|