aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js76
1 files changed, 0 insertions, 76 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js b/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js
deleted file mode 100644
index fcd706bde..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S11.8.6_A1;
-* @section: 11.8.6, 7.2, 7.3;
-* @assertion: White Space and Line Terminator between RelationalExpression and "instanceof" and between "instanceof" and ShiftExpression are allowed;
-* @description: Checking by using eval;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.8.6_A1",
-
-path: "TestCases/11_Expressions/11.8_Relational_Operators/11.8.6_The_instanceof_operator/S11.8.6_A1.js",
-
-assertion: "White Space and Line Terminator between RelationalExpression and \"instanceof\" and between \"instanceof\" and ShiftExpression are allowed",
-
-description: "Checking by using eval",
-
-test: function testcase() {
- //CHECK#1
-if (eval("({})\u0009instanceof\u0009Object") !== true) {
- $ERROR('#1: ({})\\u0009instanceof\\u0009Object === true');
-}
-
-//CHECK#2
-if (eval("({})\u000Binstanceof\u000BObject") !== true) {
- $ERROR('#2: ({})\\u000Binstanceof\\u000BObject === true');
-}
-
-//CHECK#3
-if (eval("({})\u000Cinstanceof\u000CObject") !== true) {
- $ERROR('#3: ({})\\u000Cinstanceof\\u000CObject === true');
-}
-
-//CHECK#4
-if (eval("({})\u0020instanceof\u0020Object") !== true) {
- $ERROR('#4: ({})\\u0020instanceof\\u0020Object === true');
-}
-
-//CHECK#5
-if (eval("({})\u00A0instanceof\u00A0Object") !== true) {
- $ERROR('#5: ({})\\u00A0instanceof\\u00A0Object === true');
-}
-
-//CHECK#6
-if (eval("({})\u000Ainstanceof\u000AObject") !== true) {
- $ERROR('#6: ({})\\u000Ainstanceof\\u000AObject === true');
-}
-
-//CHECK#7
-if (eval("({})\u000Dinstanceof\u000DObject") !== true) {
- $ERROR('#7: ({})\\u000Dinstanceof\\u000DObject === true');
-}
-
-//CHECK#8
-if (eval("({})\u2028instanceof\u2028Object") !== true) {
- $ERROR('#8: ({})\\u2028instanceof\\u2028Object === true');
-}
-
-//CHECK#9
-if (eval("({})\u2029instanceof\u2029Object") !== true) {
- $ERROR('#9: ({})\\u2029instanceof\\u2029Object === true');
-}
-
-//CHECK#10
-if (eval("({})\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029instanceof\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029Object") !== true) {
- $ERROR('#10: ({})\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029instanceof\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029Object === true');
-}
-
- }
-});
-