mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Implement attributes for the <meter>
element (#32230)
* Implement attributes for the meter element * Remove checks for min < max before clamping
This commit is contained in:
parent
c2325cd738
commit
2904c32e05
10 changed files with 139 additions and 743 deletions
|
@ -7,17 +7,17 @@
|
|||
interface HTMLMeterElement : HTMLElement {
|
||||
[HTMLConstructor] constructor();
|
||||
|
||||
// [CEReactions]
|
||||
// attribute double value;
|
||||
// [CEReactions]
|
||||
// attribute double min;
|
||||
// [CEReactions]
|
||||
// attribute double max;
|
||||
// [CEReactions]
|
||||
// attribute double low;
|
||||
// [CEReactions]
|
||||
// attribute double high;
|
||||
// [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;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue