diff options
Diffstat (limited to 'js/src/tests/non262/String/normalize-generic.js')
-rw-r--r-- | js/src/tests/non262/String/normalize-generic.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/non262/String/normalize-generic.js b/js/src/tests/non262/String/normalize-generic.js new file mode 100644 index 0000000000..c1c3882cc2 --- /dev/null +++ b/js/src/tests/non262/String/normalize-generic.js @@ -0,0 +1,20 @@ +var BUGNUMBER = 918987; +var summary = 'String.prototype.normalize - normalize no String object'; + +print(BUGNUMBER + ": " + summary); + +function test() { + var myobj = { + toString: () => "a\u0301", + normalize: String.prototype.normalize + }; + assertEq(myobj.normalize(), "\u00E1"); +} + +if ("normalize" in String.prototype) { + // String.prototype.normalize is not enabled in all builds. + test(); +} + +if (typeof reportCompare === "function") + reportCompare(true, true); |