mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00: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);
|
|
};
|