Sign in
chromium
/
chromium
/
src
/
205191a32c9db91062c5342e901b2da2d67a49e5
/
.
/
content
/
test
/
data
/
web_ui_dedicated_worker.js
blob: 5c7b55bad41552697ce4643a7b97da9417046c54 [
file
] [
log
] [
blame
]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
self
.
onmessage
=
(
e
)
=>
{
if
(
e
.
data
===
'ping'
)
{
self
.
postMessage
(
'pong'
);
}
};