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

Side by Side Diff: tests/dom/events_test.dart

Issue 10191033: test renaming overhaul: step 4 client tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « tests/dom/domparser_test.dart ('k') | tests/dom/exceptions_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('EventsTest'); 1 #library('EventsTest');
2 #import('../../../../lib/unittest/unittest.dart'); 2 #import('../../lib/unittest/unittest.dart');
3 #import('../../../../lib/unittest/dom_config.dart'); 3 #import('../../lib/unittest/dom_config.dart');
4 #import('dart:dom'); 4 #import('dart:dom');
5 5
6 main() { 6 main() {
7 useDomConfiguration(); 7 useDomConfiguration();
8 test('TimeStamp', () { 8 test('TimeStamp', () {
9 Event event = document.createEvent('Event'); 9 Event event = document.createEvent('Event');
10 10
11 int timeStamp = event.timeStamp; 11 int timeStamp = event.timeStamp;
12 Expect.isTrue(timeStamp > 0); 12 Expect.isTrue(timeStamp > 0);
13 }); 13 });
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 invocationCounter = 0; 52 invocationCounter = 0;
53 element.dispatchEvent(event); 53 element.dispatchEvent(event);
54 Expect.equals(1, invocationCounter); 54 Expect.equals(1, invocationCounter);
55 }); 55 });
56 test('InitMouseEvent', () { 56 test('InitMouseEvent', () {
57 HTMLDivElement div = window.document.createElement('div'); 57 HTMLDivElement div = window.document.createElement('div');
58 MouseEvent event = window.document.createEvent('MouseEvent'); 58 MouseEvent event = window.document.createEvent('MouseEvent');
59 event.initMouseEvent('zebra', true, true, window, 0, 1, 2, 3, 4, false, fals e, false, false, 0, div); 59 event.initMouseEvent('zebra', true, true, window, 0, 1, 2, 3, 4, false, fals e, false, false, 0, div);
60 }); 60 });
61 } 61 }
OLDNEW
« no previous file with comments | « tests/dom/domparser_test.dart ('k') | tests/dom/exceptions_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698