mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 856067 - Actually push the test. r=me CLOSED TREE
This commit is contained in:
parent
5430dbb693
commit
b9c30b55ac
10
js/xpconnect/tests/unit/test_bug856067.js
Normal file
10
js/xpconnect/tests/unit/test_bug856067.js
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user