blob: 984a3d0e00b5c3896ba318821904320f5c39f5b3 [file] [log] [blame]
#library('ExceptionsTest');
#import('../../pkg/unittest/unittest.dart');
#import('../../pkg/unittest/html_config.dart');
#import('dart:html');
main() {
useHtmlConfiguration();
test('DOMException', () {
try {
window.webkitNotifications.createNotification('', '', '');
} on DOMException catch (e) {
Expect.equals(DOMException.SECURITY_ERR, e.code);
Expect.equals('SECURITY_ERR', e.name);
Expect.equals('SECURITY_ERR: DOM Exception 18', e.message);
}
});
test('EventException', () {
final event = new Event('Event');
// Intentionally do not initialize it!
try {
document.$dom_dispatchEvent(event);
} on EventException catch (e) {
Expect.equals(EventException.UNSPECIFIED_EVENT_TYPE_ERR, e.code);
Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR', e.name);
Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0', e.message);
}
});
}