Skip to content

Unable to debug GWT in firefox #9787

Open
@keinhaar

Description

@keinhaar
  • 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
  1. Create a minimal GWT App. The Sample App created by the Eclipse Wizard is good.
  2. Load the App in Firefox, and set a breakpoint in the onClick method.
  3. Click the send Button
  4. Resume Execution. Firefox will halt on debugger statements. Resume again...
  5. Move mouse. Exceptions will be in the console.
  6. 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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions