aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js b/test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js
deleted file mode 100644
index 3e416cf13..000000000
--- a/test/suite/sputnik_converted/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S15.3.4.3_A11;
-* @section: 15.3.4.3;
-* @assertion: The Function.prototype.apply.length property has the attribute DontEnum;
-* @description: TChecking if enumerating the Function.prototype.apply.length property fails;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.3.4.3_A11",
-
-path: "TestCases/15_Native/15.3_Function_Objects/15.3.4_Properties_of_the_Function_Prototype_Object/15.3.4.3_Function.prototype.apply/S15.3.4.3_A11.js",
-
-assertion: "The Function.prototype.apply.length property has the attribute DontEnum",
-
-description: "TChecking if enumerating the Function.prototype.apply.length property fails",
-
-test: function testcase() {
- //CHECK#0
-if (!(Function.prototype.apply.hasOwnProperty('length'))) {
- $FAIL('#0: the Function.prototype.apply has length property.');
-}
-
-
-// CHECK#1
-if (Function.prototype.apply.propertyIsEnumerable('length')) {
- $ERROR('#1: the Function.prototype.apply.length property has the attributes DontEnum');
-}
-
-// CHECK#2
-for (var p in Function.prototype.apply){
- if (p==="length")
- $ERROR('#2: the Function.prototype.apply.length property has the attributes DontEnum');
-}
-
- }
-});
-