From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/tests/non262/String/normalize-rope.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 js/src/tests/non262/String/normalize-rope.js (limited to 'js/src/tests/non262/String/normalize-rope.js') 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); -- cgit v1.2.3