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

Side by Side Diff: tests/dom/native_gc_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/messageevent_test.dart ('k') | tests/dom/performance_api_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('NativeGCTest'); 1 #library('NativeGCTest');
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 8
9 test('EventListener', () { 9 test('EventListener', () {
10 final int N = 1000000; 10 final int N = 1000000;
11 final int M = 1000; 11 final int M = 1000;
12 12
13 var div; 13 var div;
(...skipping 11 matching lines...) Expand all
25 // Note: the reference to l keeps the entire list alive. 25 // Note: the reference to l keeps the entire list alive.
26 Expect.equals(M - 1, l[N - 1]); 26 Expect.equals(M - 1, l[N - 1]);
27 }, false); 27 }, false);
28 } 28 }
29 29
30 final event = document.createEvent('Event'); 30 final event = document.createEvent('Event');
31 event.initEvent('test', true, false); 31 event.initEvent('test', true, false);
32 div.dispatchEvent(event); 32 div.dispatchEvent(event);
33 }); 33 });
34 } 34 }
OLDNEW
« no previous file with comments | « tests/dom/messageevent_test.dart ('k') | tests/dom/performance_api_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698