blob: 30bdbaf2d786946aaf964432533980d08fdc8d64 [file] [log] [blame]
<html>
<script>
import "../resources/third_party/unittest/unittest.dart";
import "../resources/unit.dart";
import "dart:sky";
main() {
initUnit();
test('should have a constructor', () {
var doc = new Document();
expect(doc, isNotNull);
// assert.doesNotThrow(function() {
// doc.registerElement('x-foo');
// }, 'new document should have a registration context');
});
}
</script>
</html>