| Index: tests/html/input_element_test.dart
|
| diff --git a/tests/html/input_element_test.dart b/tests/html/input_element_test.dart
|
| index 43f245cf8156416d9e30be42f9f61db72b93ddf7..a70559ffc207aaeb649d13258824183bae701030 100644
|
| --- a/tests/html/input_element_test.dart
|
| +++ b/tests/html/input_element_test.dart
|
| @@ -143,6 +143,11 @@ main() {
|
|
|
| test('number', () {
|
| check(new NumberInputElement(), 'number', NumberInputElement.supported);
|
| + if (NumberInputElement.supported) {
|
| + var element = new NumberInputElement();
|
| + element.value = '123';
|
| + expect(element.valueAsNumber, 123);
|
| + }
|
| });
|
|
|
| test('range', () {
|
|
|