mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:24:57 +00:00
8 lines
202 B
Text
8 lines
202 B
Text
#import <DOM/Document.idl>
|
|
|
|
interface DOMParser {
|
|
constructor();
|
|
|
|
// FIXME: "type" should use the DOMParserSupportedType enum.
|
|
Document parseFromString(DOMString string, DOMString type);
|
|
};
|