Serenity Operating System
at master 11 lines 303 B view raw
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};