2022-02-15 16:10:51 -03:00
|
|
|
#import <DOM/CharacterData.idl>
|
2023-09-05 14:07:35 -03:00
|
|
|
#import <DOM/Slottable.idl>
|
|
|
|
|
#import <HTML/HTMLSlotElement.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
|
2022-10-07 19:45:09 -03:00
|
|
|
// https://dom.spec.whatwg.org/#text
|
2023-09-06 00:17:20 -03:00
|
|
|
[Exposed=Window]
|
2020-08-03 15:50:45 -03:00
|
|
|
interface Text : CharacterData {
|
2025-07-24 13:05:52 -03:00
|
|
|
constructor(optional Utf16DOMString data = "");
|
2022-03-21 14:57:10 -03:00
|
|
|
|
|
|
|
|
[NewObject] Text splitText(unsigned long offset);
|
2025-07-24 13:05:52 -03:00
|
|
|
readonly attribute Utf16DOMString wholeText;
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|
2023-09-05 14:07:35 -03:00
|
|
|
|
|
|
|
|
Text includes Slottable;
|