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

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

Issue 8995009: Implement chromium component. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments 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
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/browser_test.dart
diff --git a/tools/testing/dart/browser_test.dart b/tools/testing/dart/browser_test.dart
index 6cb485e402dd249ac6e5c1dc76e4e2d2bd99a963..2a47456cd0272c7542d0170489695637fbbc438b 100644
--- a/tools/testing/dart/browser_test.dart
+++ b/tools/testing/dart/browser_test.dart
@@ -19,8 +19,8 @@ String GetHtmlContents(String title,
</head>
<body>
<h1> Running $title </h1>
- <script type="text/javascript" src="../../../$controllerScript"></script>
- <script type="$scriptType" src="../../../$sourceScript"></script>
+ <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() };
@@ -52,9 +52,7 @@ String WrapDartTestInLibrary(String test) =>
#source('$test');
""";
-String DartTestWrapper(String unittest_ignored,
- String test_ignored,
- String domLibrary,
+String DartTestWrapper(String domLibrary,
String testFramework,
String library) =>
"""
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698