summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/String/normalize-rope.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/non262/String/normalize-rope.js')
-rw-r--r--js/src/tests/non262/String/normalize-rope.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/non262/String/normalize-rope.js b/js/src/tests/non262/String/normalize-rope.js
new file mode 100644
index 0000000000..b5b8800fa4
--- /dev/null
+++ b/js/src/tests/non262/String/normalize-rope.js
@@ -0,0 +1,23 @@
+var BUGNUMBER = 918987;
+var summary = 'String.prototype.normalize - normalize rope string';
+
+print(BUGNUMBER + ": " + summary);
+
+function test() {
+ /* JSRope test */
+ var a = "";
+ var b = "";
+ for (var i = 0; i < 100; i++) {
+ a += "\u0100";
+ b += "\u0041\u0304";
+ }
+ assertEq(a.normalize("NFD"), b);
+}
+
+if ("normalize" in String.prototype) {
+ // String.prototype.normalize is not enabled in all builds.
+ test();
+}
+
+if (typeof reportCompare === "function")
+ reportCompare(true, true);