electron/spec/fixtures/api/isolated-preload.js
2017-01-16 12:38:16 -08:00

15 lines
367 B
JavaScript

const {ipcRenderer} = require('electron')
window.foo = 3
window.addEventListener('message', (event) => {
ipcRenderer.send('isolated-world', {
preloadContext: {
preloadProperty: typeof window.foo,
pageProperty: typeof window.hello,
typeofRequire: typeof require,
typeofProcess: typeof process
},
pageContext: event.data
})
})