chore: add deprecation warning for the default of contextIsolation (#23507)

* chore: add deprecation warning for the default of contextIsolation

* chore: add to breaking changes

* Update docs/breaking-changes.md

Co-authored-by: Jeremy Apthorp <jeremya@chromium.org>

* chore: fix specs on windows

Co-authored-by: Jeremy Apthorp <jeremya@chromium.org>
This commit is contained in:
Samuel Attard 2020-06-25 10:55:17 -07:00 committed by GitHub
parent 605e50269e
commit 16a3f41fd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 34 additions and 3 deletions

View file

@ -4,7 +4,7 @@ app.commandLine.appendSwitch('--disable-software-rasterizer');
app.whenReady().then(() => {
const infoType = process.argv.pop();
const w = new BrowserWindow({ show: false });
const w = new BrowserWindow({ show: false, webPreferences: { contextIsolation: true } });
w.webContents.once('did-finish-load', () => {
app.getGPUInfo(infoType).then(
(gpuInfo) => {