mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 20:07:38 +02:00
10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
interface HTMLProgressElement : HTMLElement {
|
|
|
|
[CEReactions] attribute double value;
|
|
[CEReactions] attribute double max;
|
|
readonly attribute double position;
|
|
|
|
};
|