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