| 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 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 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 25 matching lines...) Expand all Loading... |
| 36 // This class is just a big hack to find form elements even in malformed HTML el
ements. | 36 // This class is just a big hack to find form elements even in malformed HTML el
ements. |
| 37 // The famous <table><tr><form><td> problem. | 37 // The famous <table><tr><form><td> problem. |
| 38 | 38 |
| 39 class HTMLFormControlsCollection : public HTMLCollection { | 39 class HTMLFormControlsCollection : public HTMLCollection { |
| 40 public: | 40 public: |
| 41 static PassRefPtr<HTMLFormControlsCollection> create(Node*, CollectionType); | 41 static PassRefPtr<HTMLFormControlsCollection> create(Node*, CollectionType); |
| 42 | 42 |
| 43 virtual ~HTMLFormControlsCollection(); | 43 virtual ~HTMLFormControlsCollection(); |
| 44 | 44 |
| 45 virtual Node* namedItem(const AtomicString& name) const; | 45 virtual Node* namedItem(const AtomicString& name) const; |
| 46 void namedGetter(const AtomicString& name, RefPtr<RadioNodeList>&, RefPtr<No
de>&); | 46 void namedGetter(const AtomicString& name, bool&, RefPtr<RadioNodeList>&, bo
ol&, RefPtr<Node>&); |
| 47 | 47 |
| 48 private: | 48 private: |
| 49 HTMLFormControlsCollection(Node*); | 49 HTMLFormControlsCollection(Node*); |
| 50 | 50 |
| 51 virtual void updateNameCache() const; | 51 virtual void updateNameCache() const; |
| 52 | 52 |
| 53 const Vector<FormAssociatedElement*>& formControlElements() const; | 53 const Vector<FormAssociatedElement*>& formControlElements() const; |
| 54 const Vector<HTMLImageElement*>& formImageElements() const; | 54 const Vector<HTMLImageElement*>& formImageElements() const; |
| 55 virtual Element* virtualItemAfter(unsigned& offsetInArray, Element*) const O
VERRIDE; | 55 virtual Element* virtualItemAfter(unsigned& offsetInArray, Element*) const O
VERRIDE; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace | 58 } // namespace |
| 59 | 59 |
| 60 #endif | 60 #endif |
| OLD | NEW |