aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js
deleted file mode 100644
index c4497b1af..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S10.1.6_A1_T1;
- * @section: 10.1.6;
- * @assertion: The activation object is initialised with a property with name arguments and attributes {DontDelete};
- * @description: Checking ifdeleting function parameter is possible;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.1.6_A1_T1",
-
-path: "TestCases/10_Execution_Contexts/10.1_Definitions/S10.1.6_A1_T1.js",
-
-assertion: "The activation object is initialised with a property with name arguments and attributes {DontDelete}",
-
-description: "Checking ifdeleting function parameter is possible",
-
-test: function testcase() {
- //CHECK#1
-function f1(a){
- delete a;
- return a;
-}
-if (f1(1) !== 1)
- $ERROR('#1: Function parameter was deleted');
-
-
- }
-});
-