js/src/jit-test/tests/jaeger/bug832670.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 enableOsiPointRegisterChecks();
michael@0 2
michael@0 3 gczeal(4);
michael@0 4 eval("(function() { " + "\
michael@0 5 for ( var CHARCODE = 1024; CHARCODE < 65536; CHARCODE+= 1234 ) {\
michael@0 6 unescape( '%u'+(ToUnicodeString(CHARCODE)).substring(0,3) )\
michael@0 7 }\
michael@0 8 function ToUnicodeString( n ) {\
michael@0 9 var string = ToHexString(n);\
michael@0 10 return string;\
michael@0 11 }\
michael@0 12 function ToHexString( n ) {\
michael@0 13 var hex = new Array();\
michael@0 14 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {}\
michael@0 15 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {\
michael@0 16 hex[index] = Math.floor( n / Math.pow(16,mag) );\
michael@0 17 var string ='';\
michael@0 18 string <<= 'A';\
michael@0 19 string += hex[index];\
michael@0 20 }\
michael@0 21 if ( 'var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++;MYVAR' )\
michael@0 22 string = '0' + string;\
michael@0 23 return string;\
michael@0 24 }\
michael@0 25 " + " })();");

mercurial