ladybird/Libraries/LibWeb/DOM/Comment.idl
Timothy Flynn 8b6e3cb735 LibWeb+LibUnicode+WebContent: Port DOM:CharacterData to UTF-16
This replaces the underlying storage of CharacterData with Utf16String
and deals with the fallout.
2025-07-24 19:00:20 +02:00

7 lines
181 B
Text

#import <DOM/CharacterData.idl>
// https://dom.spec.whatwg.org/#comment
[Exposed=Window]
interface Comment : CharacterData {
constructor(optional Utf16DOMString data = "");
};