blob: 5ab54396607a994d7ded7e161ec2f9249e7620ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/spec/webview-spec.ts.orig 2024-10-09 13:53:06 UTC
+++ electron/spec/webview-spec.ts
@@ -559,7 +559,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);
|