js/src/jit-test/tests/debug/Frame-this-03.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.

     1 // Frame.prototype.this in non-strict-mode functions, with primitive values
     3 function classOf(obj) {
     4     return Object.prototype.toString.call(obj).match(/^\[object (.*)\]$/)[1];
     5 }
     7 var g = newGlobal();
     8 var dbg = new Debugger(g);
     9 var hits = 0;
    10 dbg.onDebuggerStatement = function (frame) {
    11     hits++;
    12     assertEq(frame.this instanceof Debugger.Object, true);
    13     assertEq(frame.this.class, g.v == null ? classOf(g) : classOf(Object(g.v)));
    14 };
    16 g.eval("function f() { debugger; }");
    18 g.eval("Boolean.prototype.f = f; v = true; v.f();");
    19 g.eval("f.call(v);");
    20 g.eval("Number.prototype.f = f; v = 3.14; v.f();");
    21 g.eval("f.call(v);");
    22 g.eval("String.prototype.f = f; v = 'hello'; v.f();");
    23 g.eval("f.call(v);");
    24 g.eval("v = undefined; f.call(v);");
    25 g.eval("v = null; f.call(v);");
    27 assertEq(hits, 8);

mercurial