| 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All r
ights reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All r
ights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #include "config.h" | 23 #include "config.h" |
| 24 #include "core/html/HTMLCollection.h" | 24 #include "core/html/HTMLCollection.h" |
| 25 | 25 |
| 26 #include "HTMLNames.h" | 26 #include "HTMLNames.h" |
| 27 #include "core/dom/ClassNodeList.h" | 27 #include "core/dom/ClassNodeList.h" |
| 28 #include "core/dom/NodeList.h" | 28 #include "core/dom/NodeList.h" |
| 29 #include "core/dom/NodeRareData.h" | 29 #include "core/dom/NodeRareData.h" |
| 30 #include "core/dom/NodeTraversal.h" | 30 #include "core/dom/NodeTraversal.h" |
| 31 #include "core/html/HTMLDocument.h" | |
| 32 #include "core/html/HTMLElement.h" | 31 #include "core/html/HTMLElement.h" |
| 33 #include "core/html/HTMLObjectElement.h" | 32 #include "core/html/HTMLObjectElement.h" |
| 34 #include "core/html/HTMLOptionElement.h" | 33 #include "core/html/HTMLOptionElement.h" |
| 35 | 34 |
| 36 #include <utility> | 35 #include <utility> |
| 37 | 36 |
| 38 namespace WebCore { | 37 namespace WebCore { |
| 39 | 38 |
| 40 using namespace HTMLNames; | 39 using namespace HTMLNames; |
| 41 | 40 |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 | 685 |
| 687 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element*
element) | 686 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element*
element) |
| 688 { | 687 { |
| 689 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v
alue; | 688 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v
alue; |
| 690 if (!vector) | 689 if (!vector) |
| 691 vector = adoptPtr(new Vector<Element*>); | 690 vector = adoptPtr(new Vector<Element*>); |
| 692 vector->append(element); | 691 vector->append(element); |
| 693 } | 692 } |
| 694 | 693 |
| 695 } // namespace WebCore | 694 } // namespace WebCore |
| OLD | NEW |