t57ser

Results 16 comments of t57ser

Still happening in electron 11. Opening a single window results in 40mb used RAM while executing the code i posted results in about double the memory.

Single Window: ![image](https://user-images.githubusercontent.com/10595986/195067393-16933caf-6c69-42af-98b3-f3586d51c2f9.png) After Testrun: ![image](https://user-images.githubusercontent.com/10595986/195067640-58cbba31-5950-4c86-9a9d-492efe91751e.png) (with electron 21)

It seems like this was an issue on my side. The app had the following code: ``` const parentWindow = electron.BrowserWindow.fromBrowserView(view) parentWindow.removeBrowserView(child); ``` in order to get the parent and...

I think I know how to reproduce it: ``` window1.contentView.addChildView(view); window2.contentView.addChildView(view); ``` Attach the same view to 2 different windows and it crashes

@codebytere This seems to crash for me each time: ``` const {app, BrowserWindow, ipcMain} = require('electron') const electron = require('electron') const path = require('path') let mainWindow function createWindow () {...

Sounds like: https://github.com/electron/electron/issues/28625