Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / test_bug856067.js
blobb724ba4b180fabc4525c153f072c89141a8abf0c
1 function run_test() {
2   var sb = new Cu.Sandbox('http://www.example.com');
3   let w = Cu.evalInSandbox('var w = new Map()[Symbol.iterator](); w.__proto__ = new Set(); w.foopy = 12; w', sb);
4   Assert.equal(Object.getPrototypeOf(w), sb.Object.prototype);
5   Assert.equal(Object.getOwnPropertyNames(w).length, 0);
6   Assert.equal(w.wrappedJSObject.foopy, 12);
7   Assert.equal(w.foopy, undefined);