Index: Source/core/dom/Document.h |
=================================================================== |
--- Source/core/dom/Document.h (revision 172146) |
+++ Source/core/dom/Document.h (working copy) |
@@ -314,6 +314,7 @@ |
PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionState&); |
PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&); |
PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&); |
+ PassRefPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false); |
PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); } |
PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&); |
PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); |