summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch10/10.1/S10.1.7_A1_T1.js
blob: f7e7a0b0cca2bb7d86191c55666d9ec840bbd36b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * The this value associated with an executioncontext is immutable
 *
 * @path ch10/10.1/S10.1.7_A1_T1.js
 * @description Checking if deleting "this" fails
 */

//CHECK#1
if (delete this !== true)
  $ERROR('#1: The this value associated with an executioncontext is immutable. Actual: this was deleted');