mirror of
https://github.com/electron/electron.git
synced 2026-01-29 09:18:18 -05:00
* fix: run subframe preload bundles in isolated context * test subframe contextIsolation when disabled
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
const { ipcRenderer, webFrame } = require('electron')
|
|
|
|
window.isolatedGlobal = true
|
|
|
|
ipcRenderer.send('preload-ran', window.location.href, webFrame.routingId)
|
|
|
|
ipcRenderer.on('preload-ping', () => {
|
|
ipcRenderer.send('preload-pong', webFrame.routingId)
|
|
})
|