You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the DevTools are open and a breakpoint is hit in --single-process mode, the application will freeze and DevTools will become unresponsive.
Expected/Proposed Behavior
The breakpoint in DevTools should highlight and allow debugging without making the DevTools unresponsive.
Additional Info
While frozen, the application screen will display the 'Paused in debugger' button which can be pressed to skip past the breakpoint and resume functionality for both the application and DevTools until the breakpoint is encountered again.
SDK v0.82.0 appears to work correctly.
Operating System: Windows 10 Enterprise 22H2 19045.3930
NW.js version: SDK v0.83.0 - v0.84.0
Node.js version: v21.1.0
Reproduce steps
Put a breakpoint on the var test = 0 line
Press F5 to restart the application - the DevTools will freeze
index.html
<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
var test = 0
</script>
</body>
</html>
The text was updated successfully, but these errors were encountered:
BuggyTheBug
changed the title
SDK v0.84.0 DevTools freezes on breakpoints
SDK v0.83.0 - v0.84.0 DevTools freezes on breakpoints
Feb 6, 2024
BuggyTheBug
changed the title
SDK v0.83.0 - v0.84.0 DevTools freezes on breakpoints
SDK v0.83.0 - v0.84.0 DevTools freezes on breakpoints with --single-process mode
Feb 6, 2024
Current/Missing Behavior
If the DevTools are open and a breakpoint is hit in
--single-process
mode, the application will freeze and DevTools will become unresponsive.Expected/Proposed Behavior
The breakpoint in DevTools should highlight and allow debugging without making the DevTools unresponsive.
Additional Info
While frozen, the application screen will display the 'Paused in debugger' button which can be pressed to skip past the breakpoint and resume functionality for both the application and DevTools until the breakpoint is encountered again.
SDK v0.82.0 appears to work correctly.
Reproduce steps
var test = 0
lineindex.html
package.json
The text was updated successfully, but these errors were encountered: