HTMLParamElement.idl 347 B

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