js/src/tests/js1_5/Regress/regress-352197.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/. */
     6 //-----------------------------------------------------------------------------
     7 var BUGNUMBER = 352197;
     8 var summary = 'Strict warning for return e; vs. return;';
     9 var actual = '';
    10 var expect = 'TypeError: function f does not always return a value';
    12 printBugNumber(BUGNUMBER);
    13 printStatus (summary);
    15 if (!options().match(/strict/))
    16 {
    17   options('strict');
    18 }
    19 if (!options().match(/werror/))
    20 {
    21   options('werror');
    22 }
    24 try
    25 {
    26   eval('function f() { if (x) return y; }');
    27 }
    28 catch(ex)
    29 {
    30   actual = ex + '';
    31 }
    33 reportCompare(expect, actual, summary + ': 1');
    35 try
    36 {
    37   eval('function f() { if (x) { return y; } }');
    38 }
    39 catch(ex)
    40 {
    41   actual = ex + '';
    42 }
    44 reportCompare(expect, actual, summary + ': 2');
    46 var f;
    47 expect = 'TypeError: function anonymous does not always return a value';
    49 try
    50 {
    51   f = Function('if (x) return y;');
    52 }
    53 catch(ex)
    54 {
    55   actual = ex + '';
    56 }
    58 reportCompare(expect, actual, summary + ': 3');
    60 try
    61 {
    62   f = Function('if (x) { return y; }');
    63 }
    64 catch(ex)
    65 {
    66   actual = ex + '';
    67 }
    69 reportCompare(expect, actual, summary + ': 4');

mercurial