Bug 856067 - Actually push the test. r=me CLOSED TREE

This commit is contained in:
Bobby Holley 2014-07-14 10:22:51 -07:00
parent 5430dbb693
commit b9c30b55ac

View File

@ -0,0 +1,10 @@
const Cu = Components.utils;
function run_test() {
var sb = new Cu.Sandbox('http://www.example.com');
let w = Cu.evalInSandbox('var w = WeakMap(); w.__proto__ = new Set(); w.foopy = 12; w', sb);
do_check_eq(Object.getPrototypeOf(w), sb.Object.prototype);
do_check_eq(Object.getOwnPropertyNames(w).length, 0);
do_check_eq(w.wrappedJSObject.foopy, 12);
do_check_eq(w.foopy, undefined);
}