blob: 4831c27176c04af220aacfc04baf037a34c5070e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
var BUGNUMBER = 918987;
var summary = 'String.prototype.normalize - passing wrong parameter';
print(BUGNUMBER + ": " + summary);
function test() {
assertThrowsInstanceOf(() => "abc".normalize("NFE"), RangeError,
"String.prototype.normalize should raise RangeError on invalid form");
assertEq("".normalize(), "");
}
if ("normalize" in String.prototype) {
// String.prototype.normalize is not enabled in all builds.
test();
}
if (typeof reportCompare === "function")
reportCompare(true, true);
|