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

Unified Diff: tests/html/deferred_multi_app_lib.dart

Issue 837903002: Fix deferred loading with multiple apps on same page. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressing comments Created 5 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 | « tests/html/deferred_multi_app_htmltest.html ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/deferred_multi_app_lib.dart
diff --git a/tools/canary.dart b/tests/html/deferred_multi_app_lib.dart
similarity index 71%
copy from tools/canary.dart
copy to tests/html/deferred_multi_app_lib.dart
index cca1f90cd7be8eb2481a00a89bbc7ba7edaa6d4f..6ec352d4a43cf336d85abaf9ebc816150ef0d007 100644
--- a/tools/canary.dart
+++ b/tests/html/deferred_multi_app_lib.dart
@@ -2,10 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// Script which exits with code 42.
-
-import 'dart:io';
-
-void main() {
- exitCode = 42;
+one() {
+ return "one";
}
+
+two() {
+ return "two";
+}
« no previous file with comments | « tests/html/deferred_multi_app_htmltest.html ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698