S10.1.7_A1_T1.js (464B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: The this value associated with an executioncontext is immutable 6 es5id: 10.1.7_A1_T1 7 description: Checking if deleting "this" fails 8 ---*/ 9 10 //CHECK#1 11 if (delete this !== true) 12 throw new Test262Error('#1: The this value associated with an executioncontext is immutable. Actual: this was deleted'); 13 14 reportCompare(0, 0);