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 | // Deleting the .next method of an iterator in the middle of a for-of loop |
michael@0 | 2 | // causes a TypeError at the next iteration. |
michael@0 | 3 | |
michael@0 | 4 | load(libdir + "asserts.js"); |
michael@0 | 5 | load(libdir + "iteration.js"); |
michael@0 | 6 | |
michael@0 | 7 | var iterProto = Object.getPrototypeOf([][std_iterator]()); |
michael@0 | 8 | var s = ''; |
michael@0 | 9 | assertThrowsInstanceOf(function () { |
michael@0 | 10 | for (var v of ['duck', 'duck', 'duck', 'goose', 'FAIL']) { |
michael@0 | 11 | s += v; |
michael@0 | 12 | if (v === 'goose') |
michael@0 | 13 | delete iterProto.next; |
michael@0 | 14 | s += '.'; |
michael@0 | 15 | } |
michael@0 | 16 | }, TypeError); |
michael@0 | 17 | assertEq(s, 'duck.duck.duck.goose.'); |