Properly implement HTMLProgressElement DOM code

Signed-off-by: Erik Funder Carstensen <fundererik@gmail.com>
This commit is contained in:
Erik Funder Carstensen 2020-08-30 17:29:23 +02:00
parent fc2e8c17e8
commit 85ac792fc0
2 changed files with 79 additions and 5 deletions

View file

@ -7,10 +7,10 @@
interface HTMLProgressElement : HTMLElement {
[HTMLConstructor] constructor();
// [CEReactions]
// attribute double value;
// [CEReactions]
// attribute double max;
// readonly attribute double position;
[CEReactions]
attribute double value;
[CEReactions]
attribute double max;
readonly attribute double position;
readonly attribute NodeList labels;
};