// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- info: | White Space and Line Terminator between RelationalExpression and "instanceof" and between "instanceof" and ShiftExpression are allowed es5id: 11.8.6_A1 description: Checking by using eval ---*/ //CHECK#1 if (eval("({})\u0009instanceof\u0009Object") !== true) { throw new Test262Error('#1: ({})\\u0009instanceof\\u0009Object === true'); } //CHECK#2 if (eval("({})\u000Binstanceof\u000BObject") !== true) { throw new Test262Error('#2: ({})\\u000Binstanceof\\u000BObject === true'); } //CHECK#3 if (eval("({})\u000Cinstanceof\u000CObject") !== true) { throw new Test262Error('#3: ({})\\u000Cinstanceof\\u000CObject === true'); } //CHECK#4 if (eval("({})\u0020instanceof\u0020Object") !== true) { throw new Test262Error('#4: ({})\\u0020instanceof\\u0020Object === true'); } //CHECK#5 if (eval("({})\u00A0instanceof\u00A0Object") !== true) { throw new Test262Error('#5: ({})\\u00A0instanceof\\u00A0Object === true'); } //CHECK#6 if (eval("({})\u000Ainstanceof\u000AObject") !== true) { throw new Test262Error('#6: ({})\\u000Ainstanceof\\u000AObject === true'); } //CHECK#7 if (eval("({})\u000Dinstanceof\u000DObject") !== true) { throw new Test262Error('#7: ({})\\u000Dinstanceof\\u000DObject === true'); } //CHECK#8 if (eval("({})\u2028instanceof\u2028Object") !== true) { throw new Test262Error('#8: ({})\\u2028instanceof\\u2028Object === true'); } //CHECK#9 if (eval("({})\u2029instanceof\u2029Object") !== true) { throw new Test262Error('#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) { throw new Test262Error('#10: ({})\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029instanceof\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029Object === true'); } reportCompare(0, 0);