Sign in
webkit
/
WebKit
/
9fa89037dbf3f63098d4a46f2543f5fac19fc293
/
.
/
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"
);
}