From d6775c3866b3a55fa254d8ad9c746953d80bad8e Mon Sep 17 00:00:00 2001 From: Hiroki Tagato Date: Tue, 15 Jul 2025 22:57:24 +0900 Subject: devel/electron37: add port: Build cross-platform desktop apps with JavaScript, HTML, and CSS Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/ --- .../files/patch-electron_spec_api-web-frame-main-spec.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/electron37/files/patch-electron_spec_api-web-frame-main-spec.ts (limited to 'devel/electron37/files/patch-electron_spec_api-web-frame-main-spec.ts') diff --git a/devel/electron37/files/patch-electron_spec_api-web-frame-main-spec.ts b/devel/electron37/files/patch-electron_spec_api-web-frame-main-spec.ts new file mode 100644 index 000000000000..279337ccb3c6 --- /dev/null +++ b/devel/electron37/files/patch-electron_spec_api-web-frame-main-spec.ts @@ -0,0 +1,11 @@ +--- electron/spec/api-web-frame-main-spec.ts.orig 2024-12-05 00:03:13 UTC ++++ electron/spec/api-web-frame-main-spec.ts +@@ -315,7 +315,7 @@ describe('webFrameMain module', () => { + }); + + // TODO(jkleinsc) fix this flaky test on linux +- ifit(process.platform !== 'linux')('throws upon accessing properties when disposed', async () => { ++ ifit(process.platform !== 'linux' && process.platform !== 'freebsd')('throws upon accessing properties when disposed', async () => { + await w.loadFile(path.join(subframesPath, 'frame-with-frame-container.html')); + const { mainFrame } = w.webContents; + w.destroy(); -- cgit v1.2.3