ladybird/Userland/Libraries/LibWeb/DOM/Text.idl
Luke Wilde 6e80458515 LibWeb: Add constructors for Text, DocumentFragment and Comment
These three nodes are the only nodes in the DOM spec with constructors.
2021-09-06 02:18:41 +02:00

3 lines
83 B
Text

interface Text : CharacterData {
constructor(optional DOMString data = "");
};