js/src/tests/js1_2/regexp/simple_form.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:     simple_form.js
     9    Description:  'Tests regular expressions using simple form: re.exec(...)'
    11    Author:       Nick Lerissa
    12    Date:         March 19, 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: simple form';
    20 writeHeaderToLog('Executing script: simple_form.js');
    21 writeHeaderToLog( SECTION + " "+ TITLE);
    23 new TestCase ( SECTION,
    24 	       "/[0-9]{3}/.exec('23 2 34 678 9 09')",
    25 	       String(["678"]), String(/[0-9]{3}/.exec('23 2 34 678 9 09')));
    27 new TestCase ( SECTION,
    28 	       "/3.{4}8/.exec('23 2 34 678 9 09')",
    29 	       String(["34 678"]), String(/3.{4}8/.exec('23 2 34 678 9 09')));
    31 new TestCase ( SECTION,
    32 	       "(/3.{4}8/.exec('23 2 34 678 9 09').length",
    33 	       1, (/3.{4}8/.exec('23 2 34 678 9 09')).length);
    35 var re = /[0-9]{3}/;
    36 new TestCase ( SECTION,
    37 	       "re.exec('23 2 34 678 9 09')",
    38 	       String(["678"]), String(re.exec('23 2 34 678 9 09')));
    40 re = /3.{4}8/;
    41 new TestCase ( SECTION,
    42 	       "re.exec('23 2 34 678 9 09')",
    43 	       String(["34 678"]), String(re.exec('23 2 34 678 9 09')));
    45 new TestCase ( SECTION,
    46 	       "/3.{4}8/.exec('23 2 34 678 9 09')",
    47 	       String(["34 678"]), String(/3.{4}8/.exec('23 2 34 678 9 09')));
    49 re =/3.{4}8/;
    50 new TestCase ( SECTION,
    51 	       "(re.exec('23 2 34 678 9 09').length",
    52 	       1, (re.exec('23 2 34 678 9 09')).length);
    54 new TestCase ( SECTION,
    55 	       "(/3.{4}8/.exec('23 2 34 678 9 09').length",
    56 	       1, (/3.{4}8/.exec('23 2 34 678 9 09')).length);
    58 test();

mercurial