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

Unified Diff: tools/testing/dart/browser_test.dart

Issue 9036009: Add client/tests/client web tests to the test.dart test script. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: small changes Created 9 years 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: tools/testing/dart/browser_test.dart
diff --git a/tools/testing/dart/browser_test.dart b/tools/testing/dart/browser_test.dart
index 2a47456cd0272c7542d0170489695637fbbc438b..3dabc96c5799b7c4639279386231ddbec9aa7683 100644
--- a/tools/testing/dart/browser_test.dart
+++ b/tools/testing/dart/browser_test.dart
@@ -20,7 +20,6 @@ String GetHtmlContents(String title,
<body>
<h1> Running $title </h1>
<script type="text/javascript" src="$controllerScript"></script>
- <script type="$scriptType" src="$sourceScript"></script>
<script type="text/javascript">
// If nobody intercepts the error, finish the test.
onerror = function() { window.layoutTestController.notifyDone() };
@@ -42,6 +41,7 @@ String GetHtmlContents(String title,
}, 50);
};
</script>
+ <script type="$scriptType" src="$sourceScript"></script>
ahe 2012/01/02 10:42:23 Why this change?
Bill Hesse 2012/01/02 12:50:42 This makes test.dart consistent with test.py. I h
</body>
</html>
""";

Powered by Google App Engine
This is Rietveld 408576698