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

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

Issue 11418075: Dartifying members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing menuelement.compact exclusion. Created 8 years, 1 month 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/unittest/lib/html_config.dart ('k') | pkg/unittest/lib/interactive_html_config.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ce68ef7ab1925194e21143e7a041de2577ae1223..faad8eb8fae1896459252785fa4225fe22c1b4a6 100644
--- a/pkg/unittest/lib/html_enhanced_config.dart
+++ b/pkg/unittest/lib/html_enhanced_config.dart
@@ -65,7 +65,7 @@ class HtmlEnhancedConfiguration extends Configuration {
cssElement = document.head.query('#${_CSSID}');
}
- cssElement.innerHTML = _htmlTestCSS;
+ cssElement.innerHtml = _htmlTestCSS;
}
void onStart() {
@@ -89,7 +89,7 @@ class HtmlEnhancedConfiguration extends Configuration {
void _showInteractiveResultsInPage(int passed, int failed, int errors,
List<TestCase> results, bool isLayoutTest, String uncaughtError) {
if (isLayoutTest && passed == results.length) {
- document.body.innerHTML = "PASS";
+ document.body.innerHtml = "PASS";
} else {
// changed the StringBuffer to an Element fragment
Element te = new Element.html('<div class="unittest-table"></div>');
« no previous file with comments | « pkg/unittest/lib/html_config.dart ('k') | pkg/unittest/lib/interactive_html_config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698