Not show up 'alert()' or 'confirm()' window #5030
Replies: 2 comments 3 replies
-
Same problem here, the Workarounds is really weird .... |
Beta Was this translation helpful? Give feedback.
-
If you change to using It's important to remember that Please read the first few paragraphs of https://github.com/cefsharp/CefSharp/wiki/General-Usage for background |
Beta Was this translation helpful? Give feedback.
-
Is there an existing issue for this?
CefSharp Version
131.3.50
Operating System
Windows 11
Architecture
x64
.Net Version
.Net Framework 4.8
Implementation
WinForms
Reproduction Steps
Just access any web pages which has a JavaScript popup and push the button which launches popup.
Expected behavior
Get a popup.
Actual behavior
Nothing happened.
Regression?
I guess the problem are from security update on "Chromium" for CVE-2024-7965.
Before CVE-2024-7965, there's no such problem.
Known Workarounds
On JsDialogHandler,
JsDialogHandler.OnJSDialog()
{
suppressMessage=false;
browser.ShowDevTools();
browser.CloseDevTools();
return
false;}
I get popup.
Does this problem also occur in the CEF Sample Application
Not Tested
Other information
Again, I guess the problem are from security update on "Chromium" for CVE-2024-7965.
Before CVE-2024-7965, there's no such problem.
Beta Was this translation helpful? Give feedback.
All reactions