
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
17 lines
411 B
Text
17 lines
411 B
Text
#import <DOM/Document.idl>
|
|
|
|
enum DOMParserSupportedType {
|
|
"text/html",
|
|
"text/xml",
|
|
"application/xml",
|
|
"application/xhtml+xml",
|
|
"image/svg+xml"
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#domparser
|
|
[Exposed=Window, UseDeprecatedAKString]
|
|
interface DOMParser {
|
|
constructor();
|
|
|
|
Document parseFromString(DOMString string, DOMParserSupportedType type);
|
|
};
|