mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-13 10:26:37 +02:00
9 lines
202 B
Plaintext
9 lines
202 B
Plaintext
#import <DOM/Document.idl>
|
|
|
|
interface DOMParser {
|
|
constructor();
|
|
|
|
// FIXME: "type" should use the DOMParserSupportedType enum.
|
|
Document parseFromString(DOMString string, DOMString type);
|
|
};
|