Sign in
cobalt
/
cobalt
/
0a28a8fa312d64217177b774535966deff46f251
/
.
/
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>