mirror of https://github.com/tc39/test262.git
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:
parent
21b739f1dc
commit
943face280
|
@ -17,7 +17,7 @@ includes: [runTestCase.js]
|
|||
---*/
|
||||
|
||||
function testcase() {
|
||||
var o = new Object();
|
||||
o = new Object();
|
||||
o.x = 1;
|
||||
var d;
|
||||
with(o)
|
||||
|
|
Loading…
Reference in New Issue