https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-412266927 ## Interface `DocumentType` ### IDL Definition <details> <summary>More</summary> ``` interface DocumentType : Node { readonly attribute DOMString name; readonly attribute NamedNodeMap entities; readonly attribute NamedNodeMap notations; }; ``` </details> ### Attributes - [ ] `readonly attribute DOMString name` - [ ] `readonly attribute NamedNodeMap entities` - [ ] `readonly attribute NamedNodeMap notations` ### Overrides - [ ] `Node insertBefore(in Node newChild, in Node refChild)` - [ ] `Node replaceChild(in Node newChild, in Node oldChild)` - [ ] `Node appendChild(in Node newChild)` - [ ] `Node cloneNode(in boolean deep)`
https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-412266927
Interface
DocumentTypeIDL Definition
More
Attributes
readonly attribute DOMString namereadonly attribute NamedNodeMap entitiesreadonly attribute NamedNodeMap notationsOverrides
Node insertBefore(in Node newChild, in Node refChild)Node replaceChild(in Node newChild, in Node oldChild)Node appendChild(in Node newChild)Node cloneNode(in boolean deep)