DOMParser.idl 202 B

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