Sign in
chromium
/
devtools
/
devtools-frontend
/
HEAD
/
.
/
test
/
e2e
/
resources
/
sources
/
redundant-worker-sourcemap.html
blob: fef6aa111fbe9f50c0d1077e6bf6d4708ccac56b [
file
]
<title>
Spawn same source-mapped script in workers and page
</title>
<script>
const
workers
=
[];
for
(
let i
=
0
;
i
<
10
;
++
i
)
{
workers
.
push
(
new
Worker
(
'multi-workers.min.js'
));
}
</script>
<script
src
=
"multi-workers.min.js"
></script>