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