blob: 65c9dd49ca6043c890b6a281b251c01421be857e [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');
});
}