HTMLMeterElement.idl 568 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/form-elements.html#htmlmeterelement
  3. [Exposed=Window]
  4. interface HTMLMeterElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. // FIXME: [CEReactions] attribute double value;
  7. // FIXME: [CEReactions] attribute double min;
  8. // FIXME: [CEReactions] attribute double max;
  9. // FIXME: [CEReactions] attribute double low;
  10. // FIXME: [CEReactions] attribute double high;
  11. // FIXME: [CEReactions] attribute double optimum;
  12. // FIXME: readonly attribute NodeList labels;
  13. };