pacificIT / chromiumembedded

Automatically exported from code.google.com/p/chromiumembedded
0 stars 1 forks source link

Windows cef3 concurrency bug with multiple javascript alert()'s #605

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
CefJavaScriptDialog installs a windows message hook around its call to a modal 
ShowWindow() call to show a javascript dialog.

The bug is that javascript running in a second window can cause another entry 
into CefJavaScriptDialog while the first dialog is on display which will cause 
DCHECK(msg_hook_ == NULL) to fail in InstallMessageHook().

Original issue reported on code.google.com by andybrow...@gmail.com on 25 May 2012 at 1:06

GoogleCodeExporter commented 9 years ago

Original comment by magreenb...@gmail.com on 25 May 2012 at 2:05

GoogleCodeExporter commented 9 years ago
Fixed in revision 654.

Original comment by magreenb...@gmail.com on 29 May 2012 at 6:06