1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibWeb: Add basic HTML meter element support

This commit is contained in:
Bastiaan van der Plaat 2023-11-25 14:32:40 +01:00 committed by Sam Atkins
parent 761d824b72
commit 2107ab823d
13 changed files with 442 additions and 14 deletions

View file

@ -5,11 +5,11 @@
interface HTMLMeterElement : HTMLElement {
[HTMLConstructor] constructor();
// FIXME: [CEReactions] attribute double value;
// FIXME: [CEReactions] attribute double min;
// FIXME: [CEReactions] attribute double max;
// FIXME: [CEReactions] attribute double low;
// FIXME: [CEReactions] attribute double high;
// FIXME: [CEReactions] attribute double optimum;
[CEReactions] attribute double value;
[CEReactions] attribute double min;
[CEReactions] attribute double max;
[CEReactions] attribute double low;
[CEReactions] attribute double high;
[CEReactions] attribute double optimum;
// FIXME: readonly attribute NodeList labels;
};