blob: 81d4fe37f421cc4ff80df9fec5ee0762ee36c800 (
plain)
1
2
3
4
5
6
7
8
9
10
|
interface HTMLFormElement : HTMLElement {
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString rel;
[Reflect=accept-charset] attribute DOMString acceptCharset;
[Reflect=novalidate] attribute boolean noValidate;
undefined submit();
};
|