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

Unified Diff: samples/third_party/dromaeo/Dromaeo.dart

Issue 12223074: Create generated tests inside the build directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « pkg/intl/test/date_time_format_http_request_test.dart ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/Dromaeo.dart
diff --git a/samples/third_party/dromaeo/Dromaeo.dart b/samples/third_party/dromaeo/Dromaeo.dart
index a94934a0f1a6f3d2a385146bcbe91ebf9c189aa4..8f7593f0993ac91ed727b9a28fa282c3183d22a4 100644
--- a/samples/third_party/dromaeo/Dromaeo.dart
+++ b/samples/third_party/dromaeo/Dromaeo.dart
@@ -68,7 +68,7 @@ class SuiteController {
div.nodes.add(_element);
final description = _suiteDescription.description;
final originUrl = _suiteDescription.origin.url;
- final testUrl = 'tests/${_suiteDescription.file}';
+ final testUrl = '${_suiteDescription.file}';
div.innerHtml =
'${div.innerHtml}<p>${description}<br/><a href="${originUrl}">Origin</a'
'>, <a href="${testUrl}">Source</a>'
@@ -138,7 +138,7 @@ class Dromaeo {
final iframe = new IFrameElement();
_css(iframe, 'height', '1px');
_css(iframe, 'width', '1px');
- iframe.src = 'tests/${suite.file}';
+ iframe.src = '${suite.file}';
document.body.nodes.add(iframe);
_suiteControllers.add(new SuiteController(suite, iframe));
« no previous file with comments | « pkg/intl/test/date_time_format_http_request_test.dart ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698