blob: e5a15384cc120c9a6478427007309716ac174f17 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright 2009 the Sputnik authors. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5info: Operator x < y uses GetValue
6es5id: 11.8.1_A2.1_T3
7description: If GetBase(y) is null, throw ReferenceError
8---*/
9
10//CHECK#1
11try {
12 1 < y;
13 $ERROR('#1.1: 1 < y throw ReferenceError. Actual: ' + (1 < y));
14}
15catch (e) {
16 if ((e instanceof ReferenceError) !== true) {
17 $ERROR('#1.2: 1 < y throw ReferenceError. Actual: ' + (e));
18 }
19}