DOMParser.idl 174 B

123456
  1. interface DOMParser {
  2. constructor();
  3. // FIXME: "type" should use the DOMParserSupportedType enum.
  4. Document parseFromString(DOMString string, DOMString type);
  5. };