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

Unified Diff: tests/dom/isolates_test.dart

Issue 10222026: Migrate dom tests to dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase & address comments. Created 8 years, 8 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
Index: tests/dom/isolates_test.dart
diff --git a/tests/dom/isolates_test.dart b/tests/dom/isolates_test.dart
index b5b48bdf30f4ba22664622705534ac0062235e56..ff18d931213807f819bbfe08c3e0321fa52395eb 100644
--- a/tests/dom/isolates_test.dart
+++ b/tests/dom/isolates_test.dart
@@ -1,7 +1,7 @@
#library('IsolatesTest');
#import('../../lib/unittest/unittest.dart');
-#import('../../lib/unittest/dom_config.dart');
-#import('dart:dom');
+#import('../../lib/unittest/html_config.dart');
+#import('dart:html');
#import('dart:json');
#import('dart:isolate', prefix:'isolate');
@@ -32,7 +32,7 @@ class PingPongIsolate extends isolate.Isolate {
}
main() {
- useDomConfiguration();
+ useHtmlConfiguration();
asyncTest('IsolateSpawn', 1, () {
new PingPongIsolate().spawn().then((isolate.SendPort port) {
callbackDone();

Powered by Google App Engine
This is Rietveld 408576698