f46672cb73
BUG= Review URL: https://codereview.chromium.org//12040059 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@17735 260f80e4-7a28-3924-810f-c04153c831b5
35 lines
950 B
Dart
35 lines
950 B
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file
|
|
|
|
library JsInterop1Test;
|
|
import '../../pkg/unittest/lib/unittest.dart';
|
|
import '../../pkg/unittest/lib/html_config.dart';
|
|
import 'dart:html';
|
|
|
|
injectSource(code) {
|
|
final script = new ScriptElement();
|
|
script.type = 'text/javascript';
|
|
script.innerHtml = code;
|
|
document.body.nodes.add(script);
|
|
}
|
|
|
|
main() {
|
|
useHtmlConfiguration();
|
|
var callback;
|
|
|
|
test('js-to-dart-post-message', () {
|
|
var subscription = null;
|
|
var complete = false;
|
|
subscription = window.onMessage.listen(expectAsyncUntil1(
|
|
(e) {
|
|
if (e.data == 'hello') {
|
|
subscription.cancel();
|
|
complete = true;
|
|
}
|
|
},
|
|
() => complete));
|
|
injectSource("window.postMessage('hello', '*');");
|
|
});
|
|
}
|