| 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, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #include "core/html/HTMLFieldSetElement.h" | 25 #include "core/html/HTMLFieldSetElement.h" |
| 26 | 26 |
| 27 #include "core/HTMLNames.h" | 27 #include "core/HTMLNames.h" |
| 28 #include "core/dom/ElementTraversal.h" | 28 #include "core/dom/ElementTraversal.h" |
| 29 #include "core/dom/NodeListsNodeData.h" | 29 #include "core/dom/NodeListsNodeData.h" |
| 30 #include "core/html/HTMLCollection.h" | 30 #include "core/html/HTMLCollection.h" |
| 31 #include "core/html/HTMLLegendElement.h" | 31 #include "core/html/HTMLLegendElement.h" |
| 32 #include "core/layout/LayoutFieldset.h" | 32 #include "core/layout/LayoutFieldset.h" |
| 33 #include "platform/EventDispatchForbiddenScope.h" | 33 #include "platform/EventDispatchForbiddenScope.h" |
| 34 #include "wtf/StdLibExtras.h" | 34 #include "platform/wtf/StdLibExtras.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 using namespace HTMLNames; | 38 using namespace HTMLNames; |
| 39 | 39 |
| 40 inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document) | 40 inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document) |
| 41 : HTMLFormControlElement(fieldsetTag, document) {} | 41 : HTMLFormControlElement(fieldsetTag, document) {} |
| 42 | 42 |
| 43 HTMLFieldSetElement* HTMLFieldSetElement::Create(Document& document) { | 43 HTMLFieldSetElement* HTMLFieldSetElement::Create(Document& document) { |
| 44 return new HTMLFieldSetElement(document); | 44 return new HTMLFieldSetElement(document); |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 HTMLCollection* HTMLFieldSetElement::elements() { | 126 HTMLCollection* HTMLFieldSetElement::elements() { |
| 127 return EnsureCachedCollection<HTMLCollection>(kFormControls); | 127 return EnsureCachedCollection<HTMLCollection>(kFormControls); |
| 128 } | 128 } |
| 129 | 129 |
| 130 int HTMLFieldSetElement::tabIndex() const { | 130 int HTMLFieldSetElement::tabIndex() const { |
| 131 return HTMLElement::tabIndex(); | 131 return HTMLElement::tabIndex(); |
| 132 } | 132 } |
| 133 | 133 |
| 134 } // namespace blink | 134 } // namespace blink |
| OLD | NEW |