fix: <webview> not working in scriptable popups (#19198)
This commit is contained in:
parent
e26f366405
commit
35294891ae
5 changed files with 53 additions and 3 deletions
|
@ -836,6 +836,27 @@ describe('BrowserWindow module', () => {
|
|||
})
|
||||
w.loadFile(path.join(fixtures, 'api', 'native-window-open-native-addon.html'))
|
||||
})
|
||||
it('<webview> works in a scriptable popup', (done) => {
|
||||
const preload = path.join(fixtures, 'api', 'new-window-webview-preload.js')
|
||||
|
||||
w.destroy()
|
||||
w = new BrowserWindow({
|
||||
show: false,
|
||||
webPreferences: {
|
||||
nodeIntegrationInSubFrames: true,
|
||||
nativeWindowOpen: true,
|
||||
webviewTag: true,
|
||||
preload
|
||||
}
|
||||
})
|
||||
|
||||
ipcRenderer.send('set-options-on-next-new-window', w.webContents.id, 'show', false)
|
||||
|
||||
ipcMain.once('webview-loaded', () => {
|
||||
done()
|
||||
})
|
||||
w.loadFile(path.join(fixtures, 'api', 'new-window-webview.html'))
|
||||
})
|
||||
it('should inherit the nativeWindowOpen setting in opened windows', (done) => {
|
||||
w.destroy()
|
||||
w = new BrowserWindow({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue