Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp

Issue 2546063002: Rename FormAssociatedElement to ListedElement (Closed)
Patch Set: Rename FormAssociatedElement to ListedElement Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 DEFINE_TRACE(HTMLFieldSetElement) { 51 DEFINE_TRACE(HTMLFieldSetElement) {
52 visitor->trace(m_associatedElements); 52 visitor->trace(m_associatedElements);
53 HTMLFormControlElement::trace(visitor); 53 HTMLFormControlElement::trace(visitor);
54 } 54 }
55 55
56 bool HTMLFieldSetElement::matchesValidityPseudoClasses() const { 56 bool HTMLFieldSetElement::matchesValidityPseudoClasses() const {
57 return true; 57 return true;
58 } 58 }
59 59
60 bool HTMLFieldSetElement::isValidElement() { 60 bool HTMLFieldSetElement::isValidElement() {
61 const FormAssociatedElement::List& elements = associatedElements(); 61 const ListedElement::List& elements = associatedElements();
62 for (unsigned i = 0; i < elements.size(); ++i) { 62 for (unsigned i = 0; i < elements.size(); ++i) {
63 if (elements[i]->isFormControlElement()) { 63 if (elements[i]->isFormControlElement()) {
64 HTMLFormControlElement* control = 64 HTMLFormControlElement* control =
65 toHTMLFormControlElement(elements[i].get()); 65 toHTMLFormControlElement(elements[i].get());
66 if (!control->checkValidity(0, CheckValidityDispatchNoEvent)) 66 if (!control->checkValidity(0, CheckValidityDispatchNoEvent))
67 return false; 67 return false;
68 } 68 }
69 } 69 }
70 return true; 70 return true;
71 } 71 }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 continue; 130 continue;
131 } 131 }
132 132
133 if (!element.isFormControlElement()) 133 if (!element.isFormControlElement())
134 continue; 134 continue;
135 135
136 m_associatedElements.append(toHTMLFormControlElement(&element)); 136 m_associatedElements.append(toHTMLFormControlElement(&element));
137 } 137 }
138 } 138 }
139 139
140 const FormAssociatedElement::List& HTMLFieldSetElement::associatedElements() 140 const ListedElement::List& HTMLFieldSetElement::associatedElements() const {
141 const {
142 refreshElementsIfNeeded(); 141 refreshElementsIfNeeded();
143 return m_associatedElements; 142 return m_associatedElements;
144 } 143 }
145 144
146 int HTMLFieldSetElement::tabIndex() const { 145 int HTMLFieldSetElement::tabIndex() const {
147 return HTMLElement::tabIndex(); 146 return HTMLElement::tabIndex();
148 } 147 }
149 148
150 } // namespace blink 149 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698