Sign in
webkit
/
WebKit
/
c8cfe6a197ba034d61fade4d6d0887205b348d7f
/
.
/
LayoutTests
/
fast
/
workers
/
resources
/
worker-const-location.js
blob: 78e46a1e72f45b8707e18150787c83ca4b2dbcbc [
file
] [
log
] [
blame
]
const
location
=
2
;
// Should not throw.
function
log
(
message
)
{
postMessage
(
message
);
}
onmessage
=
function
(
event
)
{
if
(
location
==
2
)
log
(
"SUCCESS: location was properly shadowed"
);
else
log
(
"FAIL: location was not shadowed"
);
log
(
"DONE"
);
}