aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js56
1 files changed, 0 insertions, 56 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js
deleted file mode 100644
index c84526b06..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S7.2_A1.1_T1;
- * @section: 7.2, 7.5;
- * @assertion: HORIZONTAL TAB (U+0009) between any two tokens is allowed;
- * @description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.2_A1.1_T1",
-
-path: "TestCases/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js",
-
-assertion: "HORIZONTAL TAB (U+0009) between any two tokens is allowed",
-
-description: "Insert HORIZONTAL TAB(\\u0009 and \\t) between tokens of var x=1",
-
-test: function testcase() {
- // CHECK#1
-eval("\u0009var\u0009x\u0009=\u00091\u0009");
-if (x !== 1) {
- $ERROR('#1: eval("\\u0009var\\u0009x\\u0009=\\u00091\\u0009"); x === 1. Actual: ' + (x));
-}
-
-//CHECK#2
-eval("\u0009" + "var" + "\u0009" + "x" + "\u0009" + "=" + "\u0009" + "1" + "\u0009");
-if (x !== 1) {
- $ERROR('#2: eval("\\u0009" + "var" + "\\u0009" + "x" + "\\u0009" + "=" + "\\u0009" + "1" + "\\u0009"); x === 1. Actual: ' + (x));
-}
-
-//CHECK#3
-eval("\tvar\tx\t=\t1\t");
-if (x !== 1) {
- $ERROR('#3: eval("\\tvar\\tx\\t=\\t1\\t"); x === 1. Actual: ' + (x));
-}
-
-//CHECK#4
-eval("\t" + "var" + "\t" + "x" + "\t" + "=" + "\t" + "1" + "\t");
-if (x !== 1) {
- $ERROR('#4: eval("\\t" + "var" + "\\t" + "x" + "\\t" + "=" + "\\t" + "1" + "\\t"); x === 1. Actual: ' + (x));
-}
-
-//CHECK#5
-eval("\u0009" + "var" + "\t" + "x" + "\u0009" + "=" + "\t" + "1" + "\u0009");
-if (x !== 1) {
- $ERROR('#5: eval("\\u0009" + "var" + "\\t" + "x" + "\\u0009" + "=" + "\\t" + "1" + "\\u0009"); x === 1. Actual: ' + (x));
-}
-
- }
-});
-