HTMLMeterElement.idl 508 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. [CEReactions] attribute double value;
  7. [CEReactions] attribute double min;
  8. [CEReactions] attribute double max;
  9. [CEReactions] attribute double low;
  10. [CEReactions] attribute double high;
  11. [CEReactions] attribute double optimum;
  12. // FIXME: readonly attribute NodeList labels;
  13. };