HTMLProgressElement.idl 341 B

12345678910111213
  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. };