Index: tests/html/input_element_test.dart |
diff --git a/tests/html/input_element_test.dart b/tests/html/input_element_test.dart |
index fe90511d817eaba3210741326d7171836e980759..4d7f76a13f7b4c0abb8f06e46e19952454bdcbd9 100644 |
--- a/tests/html/input_element_test.dart |
+++ b/tests/html/input_element_test.dart |
@@ -177,4 +177,12 @@ main() { |
check(new ButtonInputElement(), 'button'); |
}); |
}); |
+ |
+ group('attributes', () { |
+ test('value = null', () { |
podivilov1
2013/04/26 08:14:05
test name might be confusing, valueSetNull maybe?
Anton Muhin
2013/04/26 08:47:53
Done.
|
+ final e = new TextInputElement(); |
+ e.value = null; |
+ expect(e.value, ''); |
+ }); |
+ }); |
} |