2022-02-25 21:19:06 +01:00
|
|
|
#import <DOM/HTMLCollection.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLFormElement : HTMLElement {
|
|
|
|
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
[Reflect] attribute DOMString rel;
|
2020-08-09 17:10:41 +01:00
|
|
|
[Reflect=accept-charset] attribute DOMString acceptCharset;
|
2020-11-09 08:15:10 +00:00
|
|
|
[Reflect=novalidate] attribute boolean noValidate;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2020-12-09 21:32:04 +00:00
|
|
|
undefined submit();
|
2020-11-21 21:53:18 +00:00
|
|
|
|
2022-02-25 21:19:06 +01:00
|
|
|
// FIXME: Should be [SameObject] and a HTMLFormControlsCollection
|
|
|
|
readonly attribute HTMLCollection elements;
|
|
|
|
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|