mirror of
https://git.freebsd.org/ports.git
synced 2025-05-03 03:56:39 -04:00
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/
11 lines
687 B
TypeScript
11 lines
687 B
TypeScript
--- electron/spec/webview-spec.ts.orig 2023-05-31 14:28:29 UTC
|
|
+++ electron/spec/webview-spec.ts
|
|
@@ -527,7 +527,7 @@ describe('<webview> tag', function () {
|
|
});
|
|
|
|
// FIXME(zcbenz): Fullscreen events do not work on Linux.
|
|
- ifit(process.platform !== 'linux')('exiting fullscreen should unfullscreen window', async () => {
|
|
+ ifit(process.platform !== 'linux' && process.platform !== 'freebsd')('exiting fullscreen should unfullscreen window', async () => {
|
|
const [w, webview] = await loadWebViewWindow();
|
|
const enterFullScreen = once(w, 'enter-full-screen');
|
|
await webview.executeJavaScript('document.getElementById("div").requestFullscreen()', true);
|