Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 */
6 var s = "grape";
7 function f() { "use strict"; return this; }
8 var p = Proxy.createFunction(f, f);
9 String.prototype.p = p;
10 assertEq(s.p(), "grape");
12 reportCompare(true,true);