| Index: tests/html/b_element_test.dart
|
| diff --git a/tests/html/b_element_test.dart b/tests/html/b_element_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1edff1a8dfcb7cd791d2da984e281069565cbd77
|
| --- /dev/null
|
| +++ b/tests/html/b_element_test.dart
|
| @@ -0,0 +1,13 @@
|
| +#library('BElementTest');
|
| +#import('../../lib/unittest/unittest.dart');
|
| +#import('../../lib/unittest/html_config.dart');
|
| +#import('dart:html');
|
| +
|
| +main() {
|
| + useHtmlConfiguration();
|
| +
|
| + test('create b', () {
|
| + new Element.tag('b');
|
| + });
|
| +}
|
| +
|
|
|