blob: f49a3be315837ad7fe10ef9c4fd4dacc6d086d8c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#import <HTML/HTMLElement.idl>
interface HTMLButtonElement : HTMLElement {
[Reflect=formnovalidate] attribute boolean formNoValidate;
[Reflect=formtarget] attribute DOMString formTarget;
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString value;
};
|