LibWeb: Add basic implementation of progress bar element

This commit is contained in:
Rafał Babiarz 2022-02-16 19:12:54 +01:00 committed by Tim Flynn
commit 21e353980f
Notes: sideshowbarker 2024-07-17 18:42:04 +09:00
6 changed files with 133 additions and 3 deletions

View file

@ -2,6 +2,8 @@
interface HTMLProgressElement : HTMLElement {
[CEReactions] attribute double value;
[CEReactions] attribute double max;
readonly attribute double position;
};