blob: 9ca4a88d2a4fa7f4821412e39ba93aee8666ec4b [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description(
"Tests whether delete works properly across multiple global blocks in the presence of redefined variables."
);
a = 1;
</script>
<script>
var a;
delete a;
function test()
{
return this.a ? true : false;
}
shouldBeFalse("test()");
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>