Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: client/tests/client/dom/ExceptionsTest.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #library('ExceptionsTest'); 1 #library('ExceptionsTest');
2 #import('../../../testing/unittest/unittest.dart'); 2 #import('../../../testing/unittest/unittest_dom.dart');
3 #import('dart:dom'); 3 #import('dart:dom');
4 4
5 main() { 5 main() {
6 forLayoutTests(); 6 forLayoutTests();
7 test('DOMException', () { 7 test('DOMException', () {
8 try { 8 try {
9 window.webkitNotifications.createNotification('', '', ''); 9 window.webkitNotifications.createNotification('', '', '');
10 } catch (DOMException e) { 10 } catch (DOMException e) {
11 Expect.equals(DOMException.SECURITY_ERR, e.code); 11 Expect.equals(DOMException.SECURITY_ERR, e.code);
12 Expect.equals('SECURITY_ERR', e.name); 12 Expect.equals('SECURITY_ERR', e.name);
13 Expect.equals('SECURITY_ERR: DOM Exception 18', e.message); 13 Expect.equals('SECURITY_ERR: DOM Exception 18', e.message);
14 } 14 }
15 }); 15 });
16 test('EventException', () { 16 test('EventException', () {
17 final event = window.document.createEvent('Event'); 17 final event = window.document.createEvent('Event');
18 // Intentionally do not initialize it! 18 // Intentionally do not initialize it!
19 try { 19 try {
20 window.document.dispatchEvent(event); 20 window.document.dispatchEvent(event);
21 } catch (EventException e) { 21 } catch (EventException e) {
22 Expect.equals(EventException.UNSPECIFIED_EVENT_TYPE_ERR, e.code); 22 Expect.equals(EventException.UNSPECIFIED_EVENT_TYPE_ERR, e.code);
23 Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR', e.name); 23 Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR', e.name);
24 Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0', e.mess age); 24 Expect.equals('UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0', e.mess age);
25 } 25 }
26 }); 26 });
27 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698