Fixed testing deletion of an environment object.

Test 11.4.1-4.a-5 states that it verifies that an environment object cannot be deleted. However, this was giving a false positive. It was actually testing where a "var" declaration on an environment object cannot be deleted (there are other tests for this). This test case fails on Chrome 43, Firefox 38 and Internet Explorer 11.
This commit is contained in:
Pieter van Ginkel 2015-06-03 19:29:10 +02:00
parent 21b739f1dc
commit 943face280
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ includes: [runTestCase.js]
---*/
function testcase() {
var o = new Object();
o = new Object();
o.x = 1;
var d;
with(o)