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_A1_T10.js
blob1548daa7eaf939d9731cf8ba156d9030b5be2191
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()
6 es5id: 15.5.4.19_A1_T10
7 description: >
8     Call toLocaleUpperCase() function of object with overrode toString
9     function
10 ---*/
12 var __obj = {
13   toString: function() {
14     return "\u0041b";
15   }
17 __obj.toLocaleUpperCase = String.prototype.toLocaleUpperCase;
19 //////////////////////////////////////////////////////////////////////////////
20 //CHECK#1
21 if (__obj.toLocaleUpperCase() !== "AB") {
22   throw new Test262Error('#1: var __obj = {toString:function(){return "\u0041b";}}; __obj.toLocaleUpperCase = String.prototype.toLocaleUpperCase; __obj.toLocaleUpperCase() ==="AB". Actual: ' + __obj.toLocaleUpperCase());
25 //////////////////////////////////////////////////////////////////////////////
27 reportCompare(0, 0);