OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #library('FormElementTest'); | 5 #library('FormElementTest'); |
6 | 6 |
7 #import('../../pkg/unittest/unittest.dart'); | 7 #import('../../pkg/unittest/unittest.dart'); |
8 #import('../../pkg/unittest/html_config.dart'); | 8 #import('../../pkg/unittest/html_config.dart'); |
9 #import('dart:html'); | 9 #import('dart:html'); |
10 | 10 |
11 void main() { | 11 void main() { |
12 useHtmlConfiguration(); | 12 useHtmlConfiguration(); |
13 | 13 |
14 test('constructorTest1', () { | 14 test('constructorTest1', () { |
15 var form = new FormElement(); | 15 var form = new FormElement(); |
16 expect(form, isNotNull); | 16 expect(form, isNotNull); |
17 expect(form is FormElement); | 17 expect(form is FormElement); |
18 }); | 18 }); |
19 | 19 |
20 test('checkValidityTest', () { | 20 test('checkValidityTest', () { |
21 var form = new FormElement(); | 21 var form = new FormElement(); |
22 form.innerHTML = '<label>Google: <input type="search" name="q"></label> ' | 22 form.innerHTML = '<label>Google: <input type="search" name="q"></label> ' |
23 '<input type="submit" value="Search...">'; | 23 '<input type="submit" value="Search...">'; |
24 expect(form.checkValidity(), isTrue); | 24 expect(form.checkValidity(), isTrue); |
25 form.innerHTML = '<input blaber="test" required>'; | 25 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!
| |
26 ' required>'; | |
26 expect(form.checkValidity(), isFalse); | 27 expect(form.checkValidity(), isFalse); |
27 }); | 28 }); |
28 | 29 |
29 var form = new FormElement(); | 30 var form = new FormElement(); |
30 test('acceptCharsetTest', () { | 31 test('acceptCharsetTest', () { |
31 var charset = 'abc'; | 32 var charset = 'abc'; |
32 form.acceptCharset = charset; | 33 form.acceptCharset = charset; |
33 expect(form.acceptCharset, charset); | 34 expect(form.acceptCharset, charset); |
34 }); | 35 }); |
35 | 36 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 form.noValidate = true; | 73 form.noValidate = true; |
73 expect(form.noValidate, true); | 74 expect(form.noValidate, true); |
74 }); | 75 }); |
75 | 76 |
76 test('targetTest', () { | 77 test('targetTest', () { |
77 var target = 'target'; | 78 var target = 'target'; |
78 form.target = target; | 79 form.target = target; |
79 expect(form.target, target); | 80 expect(form.target, target); |
80 }); | 81 }); |
81 } | 82 } |
OLD | NEW |