| Index: dart/site/try/src/compilation.dart
|
| diff --git a/dart/site/try/src/compilation.dart b/dart/site/try/src/compilation.dart
|
| index b5da4dcafea23468ba7940dff5797a8506518d0d..3f6fbafacb6d2e85247dcd22a1280ced04795507 100644
|
| --- a/dart/site/try/src/compilation.dart
|
| +++ b/dart/site/try/src/compilation.dart
|
| @@ -291,6 +291,10 @@ self.importScripts("$url");
|
| }
|
|
|
| void consolePrint(message) {
|
| + if (window.parent != window) {
|
| + // Test support.
|
| + window.parent.postMessage('$message\n', '/');
|
| + }
|
| console.appendText('$message\n');
|
| }
|
| }
|
|
|