mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:27:43 +00:00
LibWeb: Support DOMImplementation.createDocument() doctype parameter
1% progression on ACID3. :^)
This commit is contained in:
parent
a9c9c8c076
commit
05e9dceba6
3 changed files with 5 additions and 6 deletions
|
@ -2,9 +2,8 @@
|
|||
|
||||
interface DOMImplementation {
|
||||
|
||||
// FIXME: This is missing "optional DocumentType? doctype = null" at the end.
|
||||
// FIXME: This should return XMLDocument instead of Document.
|
||||
[NewObject] Document createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName);
|
||||
[NewObject] Document createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
||||
[NewObject] Document createHTMLDocument(optional DOMString title);
|
||||
[NewObject] DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue