OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
316 Location* location() const; | 316 Location* location() const; |
317 | 317 |
318 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionState&) ; | 318 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionState&) ; |
319 PassRefPtr<DocumentFragment> createDocumentFragment(); | 319 PassRefPtr<DocumentFragment> createDocumentFragment(); |
320 PassRefPtr<Text> createTextNode(const String& data); | 320 PassRefPtr<Text> createTextNode(const String& data); |
321 PassRefPtr<Comment> createComment(const String& data); | 321 PassRefPtr<Comment> createComment(const String& data); |
322 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionSta te&); | 322 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionSta te&); |
323 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&); | 323 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&); |
324 PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&); | 324 PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&); |
325 PassRefPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const A tomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false); | 325 PassRefPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const A tomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false); |
326 PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); } | 326 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
| |
327 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&); | 327 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&); |
328 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); | 328 PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); |
329 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser ); | 329 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser ); |
330 | 330 |
331 bool regionBasedColumnsEnabled() const; | 331 bool regionBasedColumnsEnabled() const; |
332 | 332 |
333 /** | 333 /** |
334 * Retrieve all nodes that intersect a rect in the window's document, until it is fully enclosed by | 334 * Retrieve all nodes that intersect a rect in the window's document, until it is fully enclosed by |
335 * the boundaries of a node. | 335 * the boundaries of a node. |
336 * | 336 * |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1433 inline bool Node::isDocumentNode() const | 1433 inline bool Node::isDocumentNode() const |
1434 { | 1434 { |
1435 return this == document(); | 1435 return this == document(); |
1436 } | 1436 } |
1437 | 1437 |
1438 Node* eventTargetNodeForDocument(Document*); | 1438 Node* eventTargetNodeForDocument(Document*); |
1439 | 1439 |
1440 } // namespace WebCore | 1440 } // namespace WebCore |
1441 | 1441 |
1442 #endif // Document_h | 1442 #endif // Document_h |
OLD | NEW |