summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/DOMParser.idl
blob: 276076359f9b4dbec6500ff1022ba7d9cf08951c (plain)
1
2
3
4
5
6
interface DOMParser {
    constructor();

    // FIXME: "type" should use the DOMParserSupportedType enum.
    Document parseFromString(DOMString string, DOMString type);
};