ladybird/Userland/Libraries/LibWeb/HTML/DOMParser.idl
2022-02-16 22:48:32 +03:30

8 lines
202 B
Text

#import <DOM/Document.idl>
interface DOMParser {
constructor();
// FIXME: "type" should use the DOMParserSupportedType enum.
Document parseFromString(DOMString string, DOMString type);
};