| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 769fb8434e61caa1d0959560b12d96fbe201b168..6aea635e0b5d667ec29343fe36e628b12b3932e3 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -287,6 +287,7 @@ public:
|
| PassRefPtr<Text> createTextNode(const String& data);
|
| PassRefPtr<Comment> createComment(const String& data);
|
| PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionState&);
|
| + PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId);
|
| PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&);
|
| PassRefPtr<Attr> createAttribute(const String& name, ExceptionState&);
|
| PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false);
|
|
|