mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 15:52:21 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
272 B
Text
10 lines
272 B
Text
// https://dom.spec.whatwg.org/#text
|
|
[Exposed=Window]
|
|
interface Text : CharacterData {
|
|
constructor(optional Utf16DOMString data = "");
|
|
|
|
[NewObject] Text splitText(unsigned long offset);
|
|
readonly attribute Utf16DOMString wholeText;
|
|
};
|
|
|
|
Text includes Slottable;
|