js/src/jit-test/tests/asm.js/bug928450.js

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 (function() {
     2     "use asm";
     3     function f() {
     4         i((1.5 != 2.) ? 3 : 0);
     5     }
     6     return f;
     7 })();
     9 // Bug 933104
    10 (function() {
    11     "use asm";
    12     function f(x) {
    13         x = +x;
    14         x = -2.;
    15         (x > -1.5) ? 0 : 0;
    16     }
    17     return f;
    18 })()

mercurial