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

Unified Diff: lib/unittest/html_print.dart

Issue 10558027: Mark several tests as failing after recent webkit merge and fix string concatenation in html_print.… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « no previous file | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/unittest/html_print.dart
diff --git a/lib/unittest/html_print.dart b/lib/unittest/html_print.dart
index ea43545dd9c3161a5449bae1cfe0fbc35f42ddb9..6029d8052596993946354bfcbafb9f9cededb953 100644
--- a/lib/unittest/html_print.dart
+++ b/lib/unittest/html_print.dart
@@ -65,8 +65,8 @@ String _toHtml(TestCase test_) {
</tr>''';
if (test_.stackTrace != null) {
- html +=
- '<tr><td></td><td colspan="2"><pre>${_htmlEscape(test_.stackTrace)}</pre></td></tr>';
+ html =
+ '$html<tr><td></td><td colspan="2"><pre>${_htmlEscape(test_.stackTrace)}</pre></td></tr>';
}
return html;
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698