js/src/tests/js1_8_1/strict/8.7.2.js

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 // |reftest| skip-if(Android)
     2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     4 /*
     5  * Any copyright is dedicated to the Public Domain.
     6  * http://creativecommons.org/licenses/publicdomain/
     7  */
     9 /* Check that assignment to a let-bound variable is permitted in both lenient and strict modes. */
    11 /* Assigning to a let-declared variable is okay in strict and loose modes. */
    12 assertEq(testLenientAndStrict('let let_declared; let_declared=1',
    13                               completesNormally,
    14                               completesNormally),
    15          true);
    17 reportCompare(true, true);

mercurial