blob: 59d20fb6f42bc6e2f1a28a4d1194a7bf8e499ebf [file] [log] [blame]
#library('DOMParserTest');
#import('../../pkg/unittest/unittest.dart');
#import('../../pkg/unittest/html_config.dart');
#import('dart:html');
main() {
useHtmlConfiguration();
var isDOMParser = predicate((x) => x is DOMParser, 'is a DOMParser');
test('constructorTest', () {
var ctx = new DOMParser();
expect(ctx, isNotNull);
expect(ctx, isDOMParser);
});
}