| Index: client/tests/client/dom/DOMIsolatesTest.dart
|
| diff --git a/client/tests/client/dom/DOMIsolatesTest.dart b/client/tests/client/dom/DOMIsolatesTest.dart
|
| index 542145cba17b87c45fb26036921836e4554efa81..f752a4decaf8a064d4959d6023831d02a7628619 100644
|
| --- a/client/tests/client/dom/DOMIsolatesTest.dart
|
| +++ b/client/tests/client/dom/DOMIsolatesTest.dart
|
| @@ -1,7 +1,7 @@
|
| #library('DOMIsolatesTest');
|
| #import('../../../../lib/unittest/unittest.dart');
|
| -#import('../../../../lib/unittest/dom_config.dart');
|
| -#import('dart:dom');
|
| +#import('../../../../lib/unittest/html_config.dart');
|
| +#import('dart:html');
|
| #import('dart:isolate');
|
|
|
| isolateMain(port) {
|
| @@ -27,10 +27,10 @@ isolateMainTrampoline(port) {
|
| }
|
|
|
| main() {
|
| - useDomConfiguration();
|
| + useHtmlConfiguration();
|
|
|
| - final iframe = document.createElement('iframe');
|
| - document.body.appendChild(iframe);
|
| + final iframe = new Element.tag('iframe');
|
| + document.body.nodes.add(iframe);
|
|
|
| asyncTest('Simple DOM isolate test', 1, () {
|
| spawnDomIsolate(iframe.contentWindow, 'isolateMain').then((sendPort) {
|
|
|