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

Unified Diff: pkg/unittest/lib/html_enhanced_config.dart

Issue 23492002: adding HtmlEscape to dart:convert (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: documentation TODOs Created 7 years, 3 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
Index: pkg/unittest/lib/html_enhanced_config.dart
diff --git a/pkg/unittest/lib/html_enhanced_config.dart b/pkg/unittest/lib/html_enhanced_config.dart
index 75f02abbce2fdf33c31dbcb2766dd6750fa122ea..ebcf271f6009c9b1c6d17b2d3bbb0e6b38acd669 100644
--- a/pkg/unittest/lib/html_enhanced_config.dart
+++ b/pkg/unittest/lib/html_enhanced_config.dart
@@ -12,6 +12,7 @@ library unittest_html_enhanced_config;
import 'dart:async';
import 'dart:collection' show LinkedHashMap;
+import 'dart:convert';
import 'dart:html';
import 'unittest.dart';
@@ -235,14 +236,6 @@ class HtmlEnhancedConfiguration extends SimpleConfiguration {
var background = 'unittest-row-${test_.id % 2 == 0 ? "even" : "odd"}';
var display = '${isVisible ? "unittest-row" : "unittest-row-hidden"}';
- // TODO (prujohn@gmail.com) I had to borrow this from html_print.dart
- // Probably should put it in some more common location.
- String _htmlEscape(String string) {
- return string.replaceAll('&', '&')
- .replaceAll('<','&lt;')
- .replaceAll('>','&gt;');
- }
-
addRowElement(id, status, description){
te.children.add(
new Element.html(
@@ -267,11 +260,11 @@ class HtmlEnhancedConfiguration extends SimpleConfiguration {
}
addRowElement('${test_.id}', '${test_.result.toUpperCase()}',
- '${test_.description}. ${_htmlEscape(test_.message)}');
+ '${test_.description}. ${HTML_ESCAPE.convert(test_.message)}');
if (test_.stackTrace != null) {
addRowElement('', '',
- '<pre>${_htmlEscape(test_.stackTrace.toString())}</pre>');
+ '<pre>${HTML_ESCAPE.convert(test_.stackTrace.toString())}</pre>');
}
}

Powered by Google App Engine
This is Rietveld 408576698