summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js')
-rw-r--r--js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js b/js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js
new file mode 100644
index 0000000000..aa273e7a50
--- /dev/null
+++ b/js/src/tests/test262/intl402/String/prototype/toLocaleLowerCase/capital_I_with_dot.js
@@ -0,0 +1,17 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: >
+ Check if String.prototype.toLocaleLowerCase supports mappings defined in SpecialCasings
+info: |
+ The result must be derived according to the case mappings in the Unicode character database (this explicitly
+ includes not only the UnicodeData.txt file, but also the SpecialCasings.txt file that accompanies it).
+es5id: 15.5.4.16
+es6id: 21.1.3.20
+---*/
+
+// Locale-sensitive for Turkish and Azeri.
+assert.sameValue("\u0130".toLocaleLowerCase("und"), "\u0069\u0307", "LATIN CAPITAL LETTER I WITH DOT ABOVE");
+
+reportCompare(0, 0);