summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
diff options
context:
space:
mode:
authorBrian Terlson <brian.terlson@microsoft.com>2014-12-05 15:50:00 -0800
committerBrian Terlson <brian.terlson@microsoft.com>2014-12-07 15:33:09 -0800
commit2a74f0ec1b671f15fc7df3e1e294a65abc8ebac8 (patch)
tree7315f60ffd86513bf163c05e4252fab0810bfbe8 /test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
parentda465e7399bcecd3c78fa1f5e898c9d52b4c7096 (diff)
downloadqtdeclarative-testsuites-2a74f0ec1b671f15fc7df3e1e294a65abc8ebac8.tar.gz
Reorganize ./test
Diffstat (limited to 'test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js')
-rw-r--r--test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
new file mode 100644
index 000000000..968e66738
--- /dev/null
+++ b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
@@ -0,0 +1,14 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: String.prototype.toLocaleUpperCase()
+es5id: 15.5.4.19_A1_T8
+description: Call toLocaleUpperCase() function of Infinity
+---*/
+
+Number.prototype.toLocaleUpperCase = String.prototype.toLocaleUpperCase;
+
+if (Infinity.toLocaleUpperCase()!== "INFINITY") {
+ $ERROR('#1: Number.prototype.toLocaleUpperCase = String.prototype.toLocaleUpperCase; Infinity.toLocaleUpperCase()=== "INFINITY". Actual: '+Infinity.toLocaleUpperCase());
+}