Sign in
dart
/
sdk.git
/
2ddcfae040273404ba38b116c75feafd13a0dc38
/
.
/
tests
/
html
/
b_element_test.dart
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'
);
});
}