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

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

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

mercurial