diff options
Diffstat (limited to 'js/src/tests/non262/String/normalize-form-non-atom.js')
-rw-r--r-- | js/src/tests/non262/String/normalize-form-non-atom.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/non262/String/normalize-form-non-atom.js b/js/src/tests/non262/String/normalize-form-non-atom.js new file mode 100644 index 0000000000..ee6e12c37f --- /dev/null +++ b/js/src/tests/non262/String/normalize-form-non-atom.js @@ -0,0 +1,18 @@ +var BUGNUMBER = 1145326; +var summary = 'String.prototype.normalize error when normalization form parameter is not an atom'; + +print(BUGNUMBER + ": " + summary); + +function test() { + assertEq("abc".normalize("NFKC".split("").join("")), "abc"); + assertEq("abc".normalize("NFKCabc".replace("abc", "")), "abc"); + assertEq("abc".normalize("N" + "F" + "K" + "C"), "abc"); +} + +if ("normalize" in String.prototype) { + // String.prototype.normalize is not enabled in all builds. + test(); +} + +if (typeof reportCompare === "function") + reportCompare(true, true); |