| OLD | NEW |
| (Empty) |
| 1 #library('DocumentTest'); | |
| 2 #import('../../lib/unittest/unittest.dart'); | |
| 3 #import('../../lib/unittest/html_config.dart'); | |
| 4 #import('dart:html'); | |
| 5 | |
| 6 main() { | |
| 7 useHtmlConfiguration(); | |
| 8 | |
| 9 test('CreateElement', () { | |
| 10 // FIXME: nifty way crashes, do it boring way. | |
| 11 Expect.isTrue(new Element.tag('span') is Element); | |
| 12 Expect.isTrue(new Element.tag('div') is DivElement); | |
| 13 Expect.isTrue(new Element.tag('a') is AnchorElement); | |
| 14 Expect.isTrue(new Element.tag('bad_name') is UnknownElement); | |
| 15 }); | |
| 16 } | |
| OLD | NEW |