-
Notifications
You must be signed in to change notification settings - Fork 71
EXPERIMENTAL_FEATURES_JS_CHECK
Anthony Trummer edited this page Jan 6, 2022
·
2 revisions
The experimentalFeatures and experimentalCanvasFeatures flags can be used to enable Chromium’s experimental features, which increase the overall attack surface for production applications.
Experimental features may introduce bugs and increase the application attack surface.
Search for experimentalFeatures and experimentalCanvasFeatures flags set to true within the webPreferences of BrowserWindow:
mainWindow = new BrowserWindow({
"webPreferences": {
"experimentalCanvasFeatures": true
}
});