1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/String/string-space-trim.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +/* Generated by make_unicode.py DO NOT MODIFY */ 1.5 + 1.6 +/* 1.7 + * Any copyright is dedicated to the Public Domain. 1.8 + * http://creativecommons.org/licenses/publicdomain/ 1.9 + */ 1.10 +var onlySpace = String.fromCharCode(0x9, 0xa, 0xb, 0xc, 0xd, 0x20, 0xa0, 0x1680, 0x180e, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200a, 0x2028, 0x2029, 0x202f, 0x205f, 0x3000, 0xfeff); 1.11 + 1.12 +assertEq(onlySpace.trim(), ""); 1.13 +assertEq((onlySpace + 'aaaa').trim(), 'aaaa'); 1.14 +assertEq(('aaaa' + onlySpace).trim(), 'aaaa'); 1.15 +assertEq((onlySpace + 'aaaa' + onlySpace).trim(), 'aaaa'); 1.16 + 1.17 +if (typeof reportCompare === "function") 1.18 + reportCompare(true, true);