Lines Matching refs:window

11 const window = createWindow();
14 window.globalProxy,
22 window.globalProxy,
30 window.globalProxy,
36 window.globalProxy,
42 window.globalProxy,
50 window.globalProxy,
58 window.globalProxy,
64 window.globalProxy,
70 window.globalProxy,
78 window.globalProxy,
85 window.globalProxy.getSetPropReceivingFunction = () => {};
86 assert.strictEqual(window.globalProxy.getSetPropReceivingFunction, 42);
88 window.globalProxy.getSetPropReceivingNumber = 143;
89 assert.strictEqual(window.globalProxy.getSetPropReceivingNumber, 43);
91 window.globalProxy.propReceivingNumber = 144;
92 assert.strictEqual(window.globalProxy.propReceivingNumber, 144);
94 window.globalProxy.unknownPropReceivingNumber = 145;
95 assert.strictEqual(window.globalProxy.unknownPropReceivingNumber, 145);
97 window.globalProxy[getSetSymbolReceivingFunction] = () => {};
98 assert.strictEqual(window.globalProxy[getSetSymbolReceivingFunction], 46);
100 window.globalProxy[getSetSymbolReceivingNumber] = 147;
101 assert.strictEqual(window.globalProxy[getSetSymbolReceivingNumber], 47);
103 window.globalProxy[symbolReceivingNumber] = 148;
104 assert.strictEqual(window.globalProxy[symbolReceivingNumber], 148);
106 window.globalProxy[unknownSymbolReceivingNumber] = 149;
107 assert.strictEqual(window.globalProxy[unknownSymbolReceivingNumber], 149);
110 () => (window.globalProxy.getSetPropThrowing = 150),
113 assert.strictEqual(window.globalProxy.getSetPropThrowing, 50);
116 () => (window.globalProxy.nonWritableProp = 151),
119 assert.strictEqual(window.globalProxy.nonWritableProp, 51);