| Index: tests/html/window_open_test.dart
|
| diff --git a/tests/html/window_open_test.dart b/tests/html/window_open_test.dart
|
| index 664953fdf3ecfa766bbe8a2d1d8ff309aa451d31..8fbe664ba32c837decf73cbf6d3a6049fa7f8427 100644
|
| --- a/tests/html/window_open_test.dart
|
| +++ b/tests/html/window_open_test.dart
|
| @@ -7,7 +7,7 @@ main() {
|
| useHtmlConfiguration();
|
| evaluateJavaScript(code) {
|
| final scriptTag = new Element.tag('script');
|
| - scriptTag.innerHTML = code;
|
| + scriptTag.innerHtml = code;
|
| document.body.nodes.add(scriptTag);
|
| }
|
| evaluateJavaScript('(testRunner || layoutTestController).setCanOpenWindows()');
|
|
|