summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js')
-rw-r--r--test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js
new file mode 100644
index 000000000..1de801a89
--- /dev/null
+++ b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T3.js
@@ -0,0 +1,16 @@
+// 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_T3
+description: Checking by using eval
+---*/
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+if (eval("\"bj\"").toLocaleUpperCase() !== "BJ") {
+ $ERROR('#1: eval("\\"bj\\"").toLocaleUpperCase() === "BJ". Actual: '+eval("\"bj\"").toLocaleUpperCase() );
+}
+//
+//////////////////////////////////////////////////////////////////////////////