mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
Implement DOMImplementation::createDocumentType
Implementation according to spec: http://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype Closes #1489.
This commit is contained in:
parent
c876335d22
commit
0d35d4932b
3 changed files with 35 additions and 3 deletions
|
@ -14,9 +14,9 @@
|
|||
interface DOMImplementation {
|
||||
/*boolean hasFeature(DOMString feature,
|
||||
[TreatNullAs=EmptyString] DOMString version);*/
|
||||
/*[Throws]
|
||||
[Creator, Throws]
|
||||
DocumentType createDocumentType(DOMString qualifiedName, DOMString publicId,
|
||||
DOMString systemId);*/
|
||||
DOMString systemId);
|
||||
/*[Throws]
|
||||
Document createDocument(DOMString? namespace,
|
||||
[TreatNullAs=EmptyString] DOMString qualifiedName,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue