OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface HTMLMeterElement extends HTMLElement { | 7 interface HTMLMeterElement extends HTMLElement { |
8 | 8 |
9 HTMLFormElement get form(); | 9 final HTMLFormElement form; |
10 | 10 |
11 num get high(); | 11 num high; |
12 | 12 |
13 void set high(num value); | 13 final NodeList labels; |
14 | 14 |
15 NodeList get labels(); | 15 num low; |
16 | 16 |
17 num get low(); | 17 num max; |
18 | 18 |
19 void set low(num value); | 19 num min; |
20 | 20 |
21 num get max(); | 21 num optimum; |
22 | 22 |
23 void set max(num value); | 23 num value; |
24 | |
25 num get min(); | |
26 | |
27 void set min(num value); | |
28 | |
29 num get optimum(); | |
30 | |
31 void set optimum(num value); | |
32 | |
33 num get value(); | |
34 | |
35 void set value(num value); | |
36 } | 24 } |
OLD | NEW |