aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js')
-rw-r--r--test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js b/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js
deleted file mode 100644
index dde15b573..000000000
--- a/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S13.2_A5;
-* @section: 13.2, 15.3.3.1;
-* @assertion: When Function object(F) is constructed
-* the [[Prototype]] property of F is set to the original Function prototype object as specified in 15.3.3.1;
-* @description: Function.prototype.isPrototypeOf() is used;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S13.2_A5",
-
-path: "TestCases/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A5.js",
-
-assertion: "When Function object(F) is constructed",
-
-description: "Function.prototype.isPrototypeOf() is used",
-
-test: function testcase() {
- function __func(){};
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (!(Function.prototype.isPrototypeOf(__func))) {
- $ERROR('#1: Function.prototype.isPrototypeOf(__func)');
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-
-var __gunc = function(){};
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (!(Function.prototype.isPrototypeOf(__gunc))) {
- $ERROR('#1: Function.prototype.isPrototypeOf(__gunc)');
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-
-
- }
-});
-