mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 23:59:53 +00:00
This replaces the underlying storage of CharacterData with Utf16String and deals with the fallout.
7 lines
181 B
Text
7 lines
181 B
Text
#import <DOM/CharacterData.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#comment
|
|
[Exposed=Window]
|
|
interface Comment : CharacterData {
|
|
constructor(optional Utf16DOMString data = "");
|
|
};
|