blob: b5b8800fa4b52d069c660d3008ac525e9ef23584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
|