Chromium Code Reviews| Index: Source/core/dom/Document.h |
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h |
| index 40c837de1e9afd6e835a0cd728bb3edecba8ba87..855fdae88dc0dec9bb181da0809399297940bff5 100644 |
| --- a/Source/core/dom/Document.h |
| +++ b/Source/core/dom/Document.h |
| @@ -323,7 +323,7 @@ public: |
| 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, ExceptionState& ec) { return importNode(importedNode, false, ec); } |
|
Inactive
2014/04/27 19:33:56
We likely don't need this method overload at all i
|
| PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&); |
| PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); |
| PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser); |