blob: b4630af8ac0d28165bcf33a1146812898112288a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#import <HTML/HTMLElement.idl>
interface HTMLParamElement : HTMLElement {
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString value;
[Reflect] attribute DOMString type;
[Reflect=valuetype] attribute DOMString valueType;
};
|