HTMLParamElement.idl 436 B

1234567891011121314
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/obsolete.html#htmlparamelement
  3. [Exposed=Window]
  4. interface HTMLParamElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString name;
  7. [CEReactions, Reflect] attribute DOMString value;
  8. [CEReactions, Reflect] attribute DOMString type;
  9. [CEReactions, Reflect=valuetype] attribute DOMString valueType;
  10. };