michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * White Space and Line Terminator between "typeof" and UnaryExpression are allowed michael@0: * michael@0: * @path ch11/11.4/11.4.3/S11.4.3_A1.js michael@0: * @description Checking by using eval michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (eval("var x = 0; typeof\u0009x") !== "number") { michael@0: $ERROR('#1: var x = 0; typeof\\u0009x; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (eval("var x = 0; typeof\u000Bx") !== "number") { michael@0: $ERROR('#2: var x = 0; typeof\\u000Bx; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (eval("var x = 0; typeof\u000Cx") !== "number") { michael@0: $ERROR('#3: var x = 0; typeof\\u000Cx; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (eval("var x = 0; typeof\u0020x") !== "number") { michael@0: $ERROR('#4: var x = 0; typeof\\u0020x; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (eval("var x = 0; typeof\u00A0x") !== "number") { michael@0: $ERROR('#5: var x = 0; typeof\\u00A0x; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#6 michael@0: if (eval("var x = 0; typeof\u000Ax") !== "number") { michael@0: $ERROR('#6: var x = 0; typeof\\u000Ax; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#7 michael@0: if (eval("var x = 0; typeof\u000Dx") !== "number") { michael@0: $ERROR('#7: var x = 0; typeof\\u000Dx; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#8 michael@0: if (eval("var x = 0; typeof\u2028x") !== "number") { michael@0: $ERROR('#8: var x = 0; typeof\\u2028x; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#9 michael@0: if (eval("var x = 0; typeof\u2029x") !== "number") { michael@0: $ERROR('#9: var x = 0; typeof\\u2029x; x === "number". Actual: ' + (x)); michael@0: } michael@0: michael@0: //CHECK#10 michael@0: if (eval("var x = 0; typeof\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029x") !== "number") { michael@0: $ERROR('#10: var x = 0; typeof\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029x; x === "number". Actual: ' + (x)); michael@0: } michael@0: