blob: f208e6d584da612137e5c99593a4f80a8dd8c85a [file] [log] [blame]
library BElementTest;
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
test('create b', () {
new Element.tag('b');
});
}