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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp

Issue 2548453003: FIELDSET element: |elements| IDL attribute should return an HTMLCollection, not HTMLFormControlsCol… (Closed)
Patch Set: blank lines 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
index ddb07e8b0e6a531490932f85c179399fb1b99f4b..85bab3c03ba5522a8e21c8fceb655bf5b3ee0bc6 100644
--- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
@@ -111,8 +111,8 @@ HTMLLegendElement* HTMLFieldSetElement::legend() const {
return Traversal<HTMLLegendElement>::firstChild(*this);
}
-HTMLFormControlsCollection* HTMLFieldSetElement::elements() {
- return ensureCachedCollection<HTMLFormControlsCollection>(FormControls);
+HTMLCollection* HTMLFieldSetElement::elements() {
+ return ensureCachedCollection<HTMLCollection>(FormControls);
}
void HTMLFieldSetElement::refreshElementsIfNeeded() const {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFieldSetElement.h ('k') | third_party/WebKit/Source/core/html/HTMLFieldSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698