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");
}