| 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, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 void LiveNodeList::invalidateCache(Document*) const | 38 void LiveNodeList::invalidateCache(Document*) const |
| 39 { | 39 { |
| 40 m_collectionIndexCache.invalidate(); | 40 m_collectionIndexCache.invalidate(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 Element* LiveNodeList::itemBefore(const Element* previous) const | 43 Element* LiveNodeList::itemBefore(const Element* previous) const |
| 44 { | 44 { |
| 45 return LiveNodeListBase::itemBefore(*this, previous); | 45 return LiveNodeListBase::itemBefore(*this, previous); |
| 46 } | 46 } |
| 47 | 47 |
| 48 Element* LiveNodeList::traverseToFirstElement(const ContainerNode& root) const | 48 Element* LiveNodeList::traverseToFirstElement() const |
| 49 { | 49 { |
| 50 return firstMatchingElement(*this, root); | 50 return firstMatchingElement(*this); |
| 51 } | 51 } |
| 52 | 52 |
| 53 Element* LiveNodeList::traverseForwardToOffset(unsigned offset, Element& current
Node, unsigned& currentOffset, const ContainerNode& root) const | 53 Element* LiveNodeList::traverseForwardToOffset(unsigned offset, Element& current
Node, unsigned& currentOffset) const |
| 54 { | 54 { |
| 55 return traverseMatchingElementsForwardToOffset(*this, offset, currentNode, c
urrentOffset, root); | 55 return traverseMatchingElementsForwardToOffset(*this, offset, currentNode, c
urrentOffset); |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace WebCore | 58 } // namespace WebCore |
| OLD | NEW |