1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 09:24:57 +00:00
serenity/Userland/Libraries/LibWeb/HTML/DOMParser.idl

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);
};