Skip to content

Commit

Permalink
Merge pull request #308 from Ms2ger/createDocument-optional
Browse files Browse the repository at this point in the history
Make the last argument to DOMImplementation.createDocument optional; r=annevk
  • Loading branch information
Ms2ger committed Sep 24, 2013
2 parents d148678 + b41a05d commit 3061683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom/interfaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@

interface DOMImplementation {
DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId, DOMString systemId);
XMLDocument createDocument(DOMString? namespace, [TreatNullAs=EmptyString] DOMString qualifiedName, DocumentType? doctype);
XMLDocument createDocument(DOMString? namespace, [TreatNullAs=EmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
Document createHTMLDocument(optional DOMString title);

boolean hasFeature(DOMString feature, [TreatNullAs=EmptyString] DOMString version);
Expand Down

0 comments on commit 3061683

Please sign in to comment.