Shelley Vohr
Shelley Vohr
#### Description of Change Closes https://github.com/electron/electron/issues/41703. Addresses an issue where calling `Storage.{get|set|clear}Cookies` via the Chrome Devtools protocol would return the following error: > Browser context management is not supported. This...
#### Description of Change Flaking on Linux and macOS x64 too now: * https://app.circleci.com/pipelines/github/electron/electron/79689/workflows/07ff3787-8219-45b3-8027-13f5ffce97d3/jobs/1693178/tests * https://app.circleci.com/pipelines/github/electron/electron/79689/workflows/0acb9086-8617-49b5-8f47-977904c4cc12/jobs/1693219/tests Disable entirely to get CI back to green. #### Checklist - [x] PR description...
#### Description of Change The latter patch was required as a consequence of the former - they should be a single patch. #### Checklist - [x] PR description included and...
Refs https://chromium-review.googlesource.com/c/v8/v8/+/3395880. Chromium did an advance deprecation removal of the `ScriptOrigin` ctor without an Isolate. This allows Electron to remove a [patch](https://github.com/electron/electron/blob/61374019c03ab1af8584550277318ba7c2adb0ca/patches/nan/use_new_constructor_for_scriptorigin_when_17_x.patch#L1-L29)
#### Description of Change Closes https://github.com/electron/electron/issues/41973. Fixes an issue where `recentDocuments` wasn't populating properly after the ARC migration in https://github.com/electron/electron/commit/bbdd037219f81f8c11f4cd92239f15d5365ee905. This happened because the recent documents member became a member...
#### Description of Change Closes https://github.com/electron/electron/issues/41941. Fixes an issue where `document.requestFullscreen` didn't work when calling it from a `webContents` inside `WebContentsView`. This was happening because we weren't setting the owner...
#### Description of Change Incorporate https://github.com/electron/build-tools-installer/pull/30 for more durable build-tools pinning. #### Checklist - [x] PR description included and stakeholders cc'd - [x] `npm test` passes - [x] [PR release...
#### Description of Change Closes https://github.com/electron/electron/issues/41938. Moves `setTitleBarOverlay` to BaseWindow. #### Checklist - [x] PR description included and stakeholders cc'd - [x] `npm test` passes - [x] [PR release notes](https://github.com/electron/clerk/blob/main/README.md)...
#### Description of Change Closes https://github.com/electron/electron/issues/23665. This PR enables the [Windows Control Overlay API](https://developer.mozilla.org/en-US/docs/Web/API/Window_Controls_Overlay_API) on Linux. To do so, we create a new subclass of `FramelessView`. This primarily follows logic...