HTMLProgressElement.idl 303 B

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