| Index: tests/isolate/compute_this_script_browser_test.dart
|
| diff --git a/tests/isolate/compute_this_script_browser_test.dart b/tests/isolate/compute_this_script_browser_test.dart
|
| index 49fbf2d50e30b818b10a7eeea104be0aa0946546..e91d4a960f67ac5cf823f457fae97032a9da5592 100644
|
| --- a/tests/isolate/compute_this_script_browser_test.dart
|
| +++ b/tests/isolate/compute_this_script_browser_test.dart
|
| @@ -21,8 +21,8 @@ child() {
|
|
|
| main() {
|
| useHtmlConfiguration();
|
| - var script = document.$dom_createElement('script');
|
| - document.body.$dom_appendChild(script);
|
| + var script = new ScriptElement();
|
| + document.body.append(script);
|
| test('spawn with other script tags in page', () {
|
| ReceivePort port = new ReceivePort();
|
| port.receive(expectAsync2((msg, _) {
|
|
|