js/src/tests/js1_2/regexp/compile.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 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 /**
     8    Filename:     compile.js
     9    Description:  'Tests regular expressions method compile'
    11    Author:       Nick Lerissa
    12    Date:         March 10, 1998
    13 */
    15 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
    16 var VERSION = 'no version';
    17 startTest();
    18 var TITLE   = 'RegExp: compile';
    20 writeHeaderToLog('Executing script: compile.js');
    21 writeHeaderToLog( SECTION + " "+ TITLE);
    23 var regularExpression = new RegExp();
    25 regularExpression.compile("[0-9]{3}x[0-9]{4}","i");
    27 new TestCase ( SECTION,
    28 	       "(compile '[0-9]{3}x[0-9]{4}','i')",
    29 	       String(["456X7890"]), String('234X456X7890'.match(regularExpression)));
    31 new TestCase ( SECTION,
    32 	       "source of (compile '[0-9]{3}x[0-9]{4}','i')",
    33 	       "[0-9]{3}x[0-9]{4}", regularExpression.source);
    35 new TestCase ( SECTION,
    36 	       "global of (compile '[0-9]{3}x[0-9]{4}','i')",
    37 	       false, regularExpression.global);
    39 new TestCase ( SECTION,
    40 	       "ignoreCase of (compile '[0-9]{3}x[0-9]{4}','i')",
    41 	       true, regularExpression.ignoreCase);
    43 regularExpression.compile("[0-9]{3}X[0-9]{3}","g");
    45 new TestCase ( SECTION,
    46 	       "(compile '[0-9]{3}X[0-9]{3}','g')",
    47 	       String(["234X456"]), String('234X456X7890'.match(regularExpression)));
    49 new TestCase ( SECTION,
    50 	       "source of (compile '[0-9]{3}X[0-9]{3}','g')",
    51 	       "[0-9]{3}X[0-9]{3}", regularExpression.source);
    53 new TestCase ( SECTION,
    54 	       "global of (compile '[0-9]{3}X[0-9]{3}','g')",
    55 	       true, regularExpression.global);
    57 new TestCase ( SECTION,
    58 	       "ignoreCase of (compile '[0-9]{3}X[0-9]{3}','g')",
    59 	       false, regularExpression.ignoreCase);
    62 test();

mercurial