Files
sdk/tests/html/b_element_test.dart
T
2014-04-09 19:42:11 +00:00

14 lines
223 B
Dart

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');
});
}