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