js/src/tests/ecma_5/Function/10.2.1.1.6.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.

michael@0 1 /*
michael@0 2 * Any copyright is dedicated to the Public Domain.
michael@0 3 * http://creativecommons.org/licenses/publicdomain/
michael@0 4 */
michael@0 5
michael@0 6 function strictThis() { 'use strict'; return this; }
michael@0 7
michael@0 8 /* Check that calls of flat closure slots get the right |this|. */
michael@0 9 function flat(g) {
michael@0 10 function h() { return g(); }
michael@0 11 return h;
michael@0 12 }
michael@0 13 assertEq(flat(strictThis)(), undefined);
michael@0 14
michael@0 15 /* Check that calls up upvars get the right |this|. */
michael@0 16 function upvar(f) {
michael@0 17 function h() {
michael@0 18 return f();
michael@0 19 }
michael@0 20 return h();
michael@0 21 }
michael@0 22 assertEq(upvar(strictThis), undefined);
michael@0 23
michael@0 24 /* Check that calls to with-object properties get an appropriate 'this'. */
michael@0 25 var obj = { f: strictThis };
michael@0 26 with (obj) {
michael@0 27 /*
michael@0 28 * The method won't compile anything containing a 'with', but it can
michael@0 29 * compile 'g'.
michael@0 30 */
michael@0 31 function g() { return f(); }
michael@0 32 assertEq(g(), obj);
michael@0 33 }
michael@0 34
michael@0 35 reportCompare(true, true);

mercurial