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