# File lib/xml/dom2/dombuilder.rb, line 242 def startDoctypeDecl(name, pubid, sysid, internal_subset) doctype = @document.implementation.createDocumentType(name, pubid, sysid) @current.appendChild(doctype) end