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

Unified Diff: pkg/unittest/lib/interactive_html_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_enhanced_config.dart ('k') | samples/calculator/tape.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/interactive_html_config.dart
diff --git a/pkg/unittest/lib/interactive_html_config.dart b/pkg/unittest/lib/interactive_html_config.dart
index 7cc2a04384c2902b9b2bc191a978a934f7f2e212..796fcd46832993b9a6bb8407779e6c32cf7689dc 100644
--- a/pkg/unittest/lib/interactive_html_config.dart
+++ b/pkg/unittest/lib/interactive_html_config.dart
@@ -242,7 +242,7 @@ class ParentInteractiveHtmlConfiguration extends HtmlConfiguration {
void onInit() {
_installErrorHandler();
_messageHandler = _handleMessage; // We need to make just one closure.
- document.query('#group-divs').innerHTML = "";
+ document.query('#group-divs').innerHtml = "";
}
void onStart() {
@@ -355,7 +355,7 @@ class ParentInteractiveHtmlConfiguration extends HtmlConfiguration {
testItem.classes.clear();
testItem.classes.add('test-it');
testItem.classes.add('status-pending');
- testItem.query('#$_actionIdPrefix$id').innerHTML = '';
+ testItem.query('#$_actionIdPrefix$id').innerHtml = '';
}
}
« no previous file with comments | « pkg/unittest/lib/html_enhanced_config.dart ('k') | samples/calculator/tape.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698