Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: tests/html/form_element_test.dart

Issue 10887016: Reapply DOMFormData => FormData rename. (this time with a fix for Dartium) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/form_data_test.dart ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
});
« no previous file with comments | « tests/html/form_data_test.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698