Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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);