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

Unified Diff: samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.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-modify-htmlidiomatic.dart
diff --git a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart b/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
index 4765f2d61d5f21b2f9a4569f80db268227072b9a..b2b87bc6327e33b33395917a0fe757c6502e3e92 100644
--- a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
+++ b/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
@@ -19,7 +19,7 @@ void main() {
// Try to force real results.
var ret;
- final htmlstr = document.body.innerHTML;
+ final htmlstr = document.body.innerHtml;
new Suite(window, 'dom-modify')
.test('createElement', () {
@@ -40,8 +40,8 @@ void main() {
ret = new Text('${str}5');
}
})
- .test('innerHTML', () {
- document.body.innerHTML = htmlstr;
+ .test('innerHtml', () {
+ document.body.innerHtml = htmlstr;
})
.prep(() {
elems = new List<Node>();
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-modify-html.dart ('k') | samples/third_party/dromaeo/tests/dom-query.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698