Sign in
cobalt
/
cobalt
/
ac9ac065c5083565917b15e7a672a79599f2f00b
/
.
/
src
/
third_party
/
web_platform_tests
/
webmessaging
/
message-channels
/
004-2.html
blob: 1b8ef0a7a0f020f402f081d05588d5b5751191b6 [
file
] [
log
] [
blame
]
<!doctype html>
<title>
004-2
</title>
<script>
onmessage
=
function
(
e
)
{
var
port
=
e
.
ports
[
0
];
port
.
onmessage
=
function
(
e
)
{
// implied start()
parent
.
postMessage
(
e
.
data
,
'*'
);
}
}
</script>