Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / String / prototype / toLocaleUpperCase / S15.5.4.19_A6.js
blobd2ad63105bdb23d150ed284d5e9501f69e037c9e
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: String.prototype.toLocaleUpperCase has not prototype property
6 es5id: 15.5.4.19_A6
7 description: Checking String.prototype.toLocaleUpperCase.prototype
8 ---*/
10 //////////////////////////////////////////////////////////////////////////////
11 //CHECK#1
12 if (String.prototype.toLocaleUpperCase.prototype !== undefined) {
13   throw new Test262Error('#1: String.prototype.toLocaleUpperCase.prototype === undefined. Actual: ' + String.prototype.toLocaleUpperCase.prototype);
16 //////////////////////////////////////////////////////////////////////////////
18 reportCompare(0, 0);