| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no) | 3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no) |
| 4 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 4 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 6 * Copyright (C) 2004, 2008 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2008 Apple Inc. All rights reserved. |
| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 TreeWalker::TreeWalker(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPt
r<NodeFilter> filter) | 39 TreeWalker::TreeWalker(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPt
r<NodeFilter> filter) |
| 40 : Traversal(rootNode, whatToShow, filter) | 40 : Traversal(rootNode, whatToShow, filter) |
| 41 , m_current(root()) | 41 , m_current(root()) |
| 42 { | 42 { |
| 43 ScriptWrappable::init(this); | 43 ScriptWrappable::init(this); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionState& es) | 46 void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionState& exception
State) |
| 47 { | 47 { |
| 48 if (!node) { | 48 if (!node) { |
| 49 es.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecu
te("setCurrentNode", "TreeWalker", "The Node provided is invalid.")); | 49 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::f
ailedToExecute("setCurrentNode", "TreeWalker", "The Node provided is invalid."))
; |
| 50 return; | 50 return; |
| 51 } | 51 } |
| 52 m_current = node; | 52 m_current = node; |
| 53 } | 53 } |
| 54 | 54 |
| 55 inline Node* TreeWalker::setCurrent(PassRefPtr<Node> node) | 55 inline Node* TreeWalker::setCurrent(PassRefPtr<Node> node) |
| 56 { | 56 { |
| 57 m_current = node; | 57 m_current = node; |
| 58 return m_current.get(); | 58 return m_current.get(); |
| 59 } | 59 } |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 return 0; | 274 return 0; |
| 275 if (acceptNodeResult == NodeFilter::FILTER_ACCEPT) | 275 if (acceptNodeResult == NodeFilter::FILTER_ACCEPT) |
| 276 return setCurrent(node.release()); | 276 return setCurrent(node.release()); |
| 277 if (acceptNodeResult == NodeFilter::FILTER_SKIP) | 277 if (acceptNodeResult == NodeFilter::FILTER_SKIP) |
| 278 goto Children; | 278 goto Children; |
| 279 } | 279 } |
| 280 return 0; | 280 return 0; |
| 281 } | 281 } |
| 282 | 282 |
| 283 } // namespace WebCore | 283 } // namespace WebCore |
| OLD | NEW |