Sign in
webkit
/
WebKit
/
a505795d6604e65c53d1725ad4e11f5541e21004
/
.
/
LayoutTests
/
inspector
/
worker
/
resources
/
worker-debugger-thread-1.js
blob: d8e181d7443aec3fffe4bfc82f607b4a8c344630 [
file
] [
log
] [
blame
]
let testVariable
=
"worker thread 1"
;
onmessage
=
function
(
event
)
{
if
(
event
.
data
===
"doWork"
)
setTimeout
(
workInThread1
,
0
)
}
function
workInThread1
()
{
foo
();
}
function
foo
()
{
debugger
;
}