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

Side by Side Diff: tests/html/native_gc_test.dart

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/html/mutationobserver_test.dart ('k') | tests/html/node_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('../../pkg/unittest/unittest.dart'); 2 import '../../pkg/unittest/lib/unittest.dart';
3 #import('../../pkg/unittest/html_config.dart'); 3 import '../../pkg/unittest/lib/html_config.dart';
4 #import('dart:html'); 4 import 'dart:html';
5 5
6 main() { 6 main() {
7 useHtmlConfiguration(); 7 useHtmlConfiguration();
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;
14 for (int i = 0; i < M; ++i) { 14 for (int i = 0; i < M; ++i) {
(...skipping 29 matching lines...) Expand all
44 testDiv.on.click.add(expectAsync1((e) {})); 44 testDiv.on.click.add(expectAsync1((e) {}));
45 window.postMessage('test', '*'); 45 window.postMessage('test', '*');
46 }); 46 });
47 } 47 }
48 48
49 void triggerMajorGC() { 49 void triggerMajorGC() {
50 List list = new List(1000000); 50 List list = new List(1000000);
51 Element div = new DivElement(); 51 Element div = new DivElement();
52 div.on.click.add((e) => print(list[0])); 52 div.on.click.add((e) => print(list[0]));
53 } 53 }
OLDNEW
« no previous file with comments | « tests/html/mutationobserver_test.dart ('k') | tests/html/node_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698