Sat, 03 Jan 2015 20:18:00 +0100
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 | function test1() { |
michael@0 | 2 | var BUGNUMBER = ''; |
michael@0 | 3 | var summary = ''; |
michael@0 | 4 | var actual = ''; |
michael@0 | 5 | test(BUGNUMBER); |
michael@0 | 6 | function test() { |
michael@0 | 7 | try { |
michael@0 | 8 | (function () { eval("'foo'.b()", arguments) })(); |
michael@0 | 9 | } catch(ex) { |
michael@0 | 10 | actual = ex + ''; |
michael@0 | 11 | } |
michael@0 | 12 | } |
michael@0 | 13 | assertEq(actual, 'TypeError: "foo".b is not a function'); |
michael@0 | 14 | } |
michael@0 | 15 | test1(); |
michael@0 | 16 | |
michael@0 | 17 | function test2() { |
michael@0 | 18 | var BUGNUMBER = ''; |
michael@0 | 19 | var summary = ''; |
michael@0 | 20 | function g() { |
michael@0 | 21 | 'use strict'; |
michael@0 | 22 | try { |
michael@0 | 23 | eval('function foo() { var a, arguments, b;}'); |
michael@0 | 24 | } catch (x) { |
michael@0 | 25 | return (x instanceof SyntaxError); |
michael@0 | 26 | } |
michael@0 | 27 | }; |
michael@0 | 28 | assertEq(g(), true); |
michael@0 | 29 | } |
michael@0 | 30 | test2(); |