HTMLProgressElement.idl 389 B

123456789101112
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/form-elements.html#htmlprogresselement
  3. [Exposed=Window]
  4. interface HTMLProgressElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions] attribute double value;
  7. [CEReactions] attribute double max;
  8. readonly attribute double position;
  9. // FIXME: readonly attribute NodeList labels;
  10. };