js/src/jit-test/tests/jaeger/bug832670.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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