Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
sources
/
multi-workers.html
blob: c6864ca5f2eea967672252aaf1dcf5bc66c44bac [
file
] [
log
] [
blame
]
<title>
Spawn multiple workers
</title>
<script>
const
workers
=
[];
for
(
let i
=
0
;
i
<
10
;
++
i
)
{
workers
.
push
(
new
Worker
(
'multi-workers.js'
));
}
</script>