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:
parent
761d824b72
commit
2107ab823d
13 changed files with 442 additions and 14 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue