ladybird/Userland/Libraries/LibWeb/DOM/Comment.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
86 B
Text

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