Open
Description
- GWT version: 2.10.0, 2.8.1
- Browser (with version): Firefox 102.5.0.esr
- Operating System: Windows and Debian
Description
It is impossible to debug a GWT Application with Firefox, because Firefox throws lots of Exceptions on any MouseEvent after a breakpoint was hit, and thread was resumed.
The Error Messages are:
Uncaught Error: java.lang.AssertionError: Negative entryDepth value at exit -1
Steps to reproduce
- Create a minimal GWT App. The Sample App created by the Eclipse Wizard is good.
- Load the App in Firefox, and set a breakpoint in the onClick method.
- Click the send Button
- Resume Execution. Firefox will halt on debugger statements. Resume again...
- Move mouse. Exceptions will be in the console.
- Click send Button again. nothing will happen.
@Override public void onModuleLoad() { final Button sendButton = new Button("Send"); RootPanel.get("sendButtonContainer").add(sendButton); sendButton.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { GWT.log("TEST"); } }); }
Known workarounds
None.
Edge and Chromium don't have the Problem.
Metadata
Metadata
Assignees
Labels
No labels