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

Unified Diff: client/html/benchmarks/dromaeo/tests/DomQuery.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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: client/html/benchmarks/dromaeo/tests/DomQuery.dart
diff --git a/client/html/benchmarks/dromaeo/tests/DomQuery.dart b/client/html/benchmarks/dromaeo/tests/DomQuery.dart
index 67e7e412b1f968e5daf0d224548bdd2f9d4e2e01..ec5941d06ed5b79ea75b7435334bbca2e8ec484d 100644
--- a/client/html/benchmarks/dromaeo/tests/DomQuery.dart
+++ b/client/html/benchmarks/dromaeo/tests/DomQuery.dart
@@ -19,7 +19,7 @@ class Main {
html = BenchUtil.replaceAll(html, 'class="foo.*?"', (Match match) {
return 'class="foo test${num} bar"';
});
- final div = document.createElement('div');
+ final div = new Element.tag('div');
div.innerHTML = html;
document.body.nodes.add(div);
})
« no previous file with comments | « client/html/benchmarks/dromaeo/tests/DomModify.dart ('k') | client/html/benchmarks/dromaeo/tests/DomTraverse.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698