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

Unified Diff: samples/third_party/dromaeo/tests/dom-query-html.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
Index: samples/third_party/dromaeo/tests/dom-query-html.dart
diff --git a/samples/third_party/dromaeo/tests/dom-query-html.dart b/samples/third_party/dromaeo/tests/dom-query-html.dart
index 07aa7caa96a70303f01f62484704f3bf6ba931f4..eddbdf3662ad9180a0f5f04480839c71e3b9eeab 100644
--- a/samples/third_party/dromaeo/tests/dom-query-html.dart
+++ b/samples/third_party/dromaeo/tests/dom-query-html.dart
@@ -11,7 +11,7 @@ void main() {
// Try to force real results.
var ret;
- String html = document.body.innerHTML;
+ String html = document.body.innerHtml;
new Suite(window, 'dom-query')
.prep(() {
@@ -26,7 +26,7 @@ void main() {
return 'class="foo test${num} bar"';
});
final div = new Element.tag('div');
- div.innerHTML = html;
+ div.innerHtml = html;
document.body.$dom_appendChild(div);
})
.test('getElementById', () {
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-query.html ('k') | samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698