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

Unified Diff: samples/third_party/dromaeo/tests/dom-modify-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-modify-html.dart
diff --git a/samples/third_party/dromaeo/tests/dom-modify-html.dart b/samples/third_party/dromaeo/tests/dom-modify-html.dart
index 8fc6c54bccfcf00e392eb3ece09f810111dd9673..3f5408300decd225c2e724b2f4e8ca23abc9ae0c 100644
--- a/samples/third_party/dromaeo/tests/dom-modify-html.dart
+++ b/samples/third_party/dromaeo/tests/dom-modify-html.dart
@@ -20,7 +20,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', () {
@@ -41,8 +41,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 ('k') | samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698