| OLD | NEW |
| 1 // Copyright (c) 2008, Google Inc. | 1 // Copyright (c) 2008, Google Inc. |
| 2 // All rights reserved. | 2 // All rights reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // * Redistributions of source code must retain the above copyright | 8 // * Redistributions of source code must retain the above copyright |
| 9 // notice, this list of conditions and the following disclaimer. | 9 // notice, this list of conditions and the following disclaimer. |
| 10 // * Redistributions in binary form must reproduce the above | 10 // * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 Node* NamedNodesCollection::item(unsigned index) const | 37 Node* NamedNodesCollection::item(unsigned index) const |
| 38 { | 38 { |
| 39 if (index < m_nodes.size()) | 39 if (index < m_nodes.size()) |
| 40 return m_nodes[index].get(); | 40 return m_nodes[index].get(); |
| 41 return 0; | 41 return 0; |
| 42 } | 42 } |
| 43 | 43 |
| 44 Node* NamedNodesCollection::namedItem(const AtomicString& id) const | |
| 45 { | |
| 46 for (unsigned i = 0; i < m_nodes.size(); ++i) { | |
| 47 Node* node = m_nodes[i].get(); | |
| 48 if (node->hasID() && toElement(node)->getIdAttribute() == id) | |
| 49 return node; | |
| 50 } | |
| 51 return 0; | |
| 52 } | |
| 53 | |
| 54 } // namespace WebCore | 44 } // namespace WebCore |
| OLD | NEW |