summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLProgressElement.idl
blob: 4064f278c93b3dc27c2322615f06faf62654374a (plain)
1
2
3
4
5
6
7
8
9
#import <HTML/HTMLElement.idl>

interface HTMLProgressElement : HTMLElement {

    [CEReactions] attribute double value;
    [CEReactions] attribute double max;
    readonly attribute double position;

};