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

Unified Diff: client/tests/client/dom/NativeGCTest.dart

Issue 9313003: Native GC test breaking on Dartium (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed spacing Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/client/client.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/dom/NativeGCTest.dart
diff --git a/client/tests/client/dom/NativeGCTest.dart b/client/tests/client/dom/NativeGCTest.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2f9e8e869a211462a7d11c2bfc0a65f2a6d81386
--- /dev/null
+++ b/client/tests/client/dom/NativeGCTest.dart
@@ -0,0 +1,32 @@
+#library('NativeGCTest');
+#import('../../../testing/unittest/unittest.dart');
+#import('dart:dom');
+
+main() {
+
+ test('EventListener', () {
+ final int N = 1000000;
+ final int M = 1000;
+
+ var div;
+ for (int i = 0; i < M; ++i) {
+ // This memory should be freed when the listener below is
+ // collected.
+ List l = new List(N);
+
+ // Record the iteration number.
+ l[N - 1] = i;
+
+ div = document.createElement('div');
+ div.addEventListener('test', (_) {
+ // Only the final iteration's listener should be invoked.
+ // Note: the reference to l keeps the entire list alive.
+ Expect.equals(M - 1, l[N - 1]);
+ }, false);
+ }
+
+ final event = document.createEvent('Event');
+ event.initEvent('test', true, false);
+ div.dispatchEvent(event);
+ });
+}
« no previous file with comments | « client/tests/client/client.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698