mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 10:09:14 +00:00
LibWeb: Add basic HTML meter element support
This commit is contained in:
parent
761d824b72
commit
2107ab823d
Notes:
sideshowbarker
2024-07-17 02:55:44 +09:00
Author: https://github.com/bplaat
Commit: 2107ab823d
Pull-request: https://github.com/SerenityOS/serenity/pull/21622
Reviewed-by: https://github.com/AtkinsSJ ✅
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