Index: tests/html/form_element_test.dart |
=================================================================== |
--- tests/html/form_element_test.dart (revision 11481) |
+++ tests/html/form_element_test.dart (working copy) |
@@ -22,7 +22,8 @@ |
form.innerHTML = '<label>Google: <input type="search" name="q"></label> ' |
'<input type="submit" value="Search...">'; |
expect(form.checkValidity(), isTrue); |
- form.innerHTML = '<input blaber="test" required>'; |
+ form.innerHTML = '<input type="email" value="notemail" blaber="test"' |
vsm
2012/08/29 18:31:51
Can you add a comment here on the behavior differe
Emily Fortuna
2012/08/29 23:00:26
Done!
|
+ ' required>'; |
expect(form.checkValidity(), isFalse); |
}); |