| 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);
|
| })
|
|
|