blob: b29a0f29a0089ba20c6ad36084117a0bc9b4814d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <HTML/HTMLElement.idl>
interface HTMLFormElement : HTMLElement {
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString rel;
[Reflect=accept-charset] attribute DOMString acceptCharset;
[Reflect=novalidate] attribute boolean noValidate;
undefined submit();
};
|