js/src/tests/ecma_5/String/string-space-trim.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* Generated by make_unicode.py DO NOT MODIFY */
michael@0 2
michael@0 3 /*
michael@0 4 * Any copyright is dedicated to the Public Domain.
michael@0 5 * http://creativecommons.org/licenses/publicdomain/
michael@0 6 */
michael@0 7 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);
michael@0 8
michael@0 9 assertEq(onlySpace.trim(), "");
michael@0 10 assertEq((onlySpace + 'aaaa').trim(), 'aaaa');
michael@0 11 assertEq(('aaaa' + onlySpace).trim(), 'aaaa');
michael@0 12 assertEq((onlySpace + 'aaaa' + onlySpace).trim(), 'aaaa');
michael@0 13
michael@0 14 if (typeof reportCompare === "function")
michael@0 15 reportCompare(true, true);

mercurial