| 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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = 0, const char* markedLabel2 = 0) const; | 607 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = 0, const char* markedLabel2 = 0) const; |
| 608 void showTreeForThisAcrossFrame() const; | 608 void showTreeForThisAcrossFrame() const; |
| 609 #endif | 609 #endif |
| 610 | 610 |
| 611 void invalidateNodeListCachesInAncestors(const QualifiedName* attrName = 0,
Element* attributeOwnerElement = 0); | 611 void invalidateNodeListCachesInAncestors(const QualifiedName* attrName = 0,
Element* attributeOwnerElement = 0); |
| 612 NodeListsNodeData* nodeLists(); | 612 NodeListsNodeData* nodeLists(); |
| 613 void clearNodeLists(); | 613 void clearNodeLists(); |
| 614 | 614 |
| 615 PassRefPtr<NodeList> getElementsByTagName(const AtomicString&); | 615 PassRefPtr<NodeList> getElementsByTagName(const AtomicString&); |
| 616 PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI
, const AtomicString& localName); | 616 PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI
, const AtomicString& localName); |
| 617 PassRefPtr<NodeList> getElementsByName(const String& elementName); | 617 PassRefPtr<NodeList> getElementsByName(const AtomicString& elementName); |
| 618 PassRefPtr<NodeList> getElementsByClassName(const String& classNames); | 618 PassRefPtr<NodeList> getElementsByClassName(const AtomicString& classNames); |
| 619 PassRefPtr<RadioNodeList> radioNodeList(const AtomicString&); | 619 PassRefPtr<RadioNodeList> radioNodeList(const AtomicString&); |
| 620 | 620 |
| 621 virtual bool willRespondToMouseMoveEvents(); | 621 virtual bool willRespondToMouseMoveEvents(); |
| 622 virtual bool willRespondToMouseClickEvents(); | 622 virtual bool willRespondToMouseClickEvents(); |
| 623 virtual bool willRespondToTouchEvents(); | 623 virtual bool willRespondToTouchEvents(); |
| 624 | 624 |
| 625 PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionSt
ate&); | 625 PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionSt
ate&); |
| 626 PassRefPtr<NodeList> querySelectorAll(const AtomicString& selectors, Excepti
onState&); | 626 PassRefPtr<NodeList> querySelectorAll(const AtomicString& selectors, Excepti
onState&); |
| 627 | 627 |
| 628 unsigned short compareDocumentPosition(const Node*) const; | 628 unsigned short compareDocumentPosition(const Node*) const; |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 | 949 |
| 950 } // namespace WebCore | 950 } // namespace WebCore |
| 951 | 951 |
| 952 #ifndef NDEBUG | 952 #ifndef NDEBUG |
| 953 // Outside the WebCore namespace for ease of invocation from gdb. | 953 // Outside the WebCore namespace for ease of invocation from gdb. |
| 954 void showTree(const WebCore::Node*); | 954 void showTree(const WebCore::Node*); |
| 955 void showNodePath(const WebCore::Node*); | 955 void showNodePath(const WebCore::Node*); |
| 956 #endif | 956 #endif |
| 957 | 957 |
| 958 #endif | 958 #endif |
| OLD | NEW |