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

Unified Diff: Source/core/html/HTMLFormElement.idl

Issue 980703006: Sync HTML element interfaces E-F with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months 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
« no previous file with comments | « Source/core/html/HTMLFontElement.idl ('k') | Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormElement.idl
diff --git a/Source/core/html/HTMLFormElement.idl b/Source/core/html/HTMLFormElement.idl
index 203c2876cc8df83ecd779df573765699943e1559..1448adf3f6605c449d66b0303036560b10513f29 100644
--- a/Source/core/html/HTMLFormElement.idl
+++ b/Source/core/html/HTMLFormElement.idl
@@ -18,6 +18,8 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#htmlformelement
+
[
OverrideBuiltins,
] interface HTMLFormElement : HTMLElement {
@@ -31,9 +33,10 @@
[Reflect] attribute boolean noValidate;
[Reflect] attribute DOMString target;
- readonly attribute HTMLCollection elements;
+ readonly attribute HTMLFormControlsCollection elements;
readonly attribute long length;
[ImplementedAs=item] getter Element (unsigned long index);
+ // FIXME: This getter should not have [NotEnumerable].
[NotEnumerable] getter (RadioNodeList or Element) (DOMString name);
[ImplementedAs=submitFromJavaScript] void submit();
« no previous file with comments | « Source/core/html/HTMLFontElement.idl ('k') | Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698