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