Closed
Bug 1280616
Opened 9 years ago
Closed 6 years ago
Breakpoints not caught on refresh, race condition.
Categories
(DevTools :: Debugger, defect, P3)
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: gregtatum, Unassigned)
References
(Blocks 1 open bug)
Details
This appears to be a race condition because when a source takes some time to load, this error is reproducible, but when served locally this bug does not happen.
Steps to reproduce:
* Visit: http://gregtatum.com/tmp/breakpoint/breakpoint.html
* Let page load.
* Open debugger.
* Refresh the page.
* The breakpoint is caught.
* Step over once.
* Refresh the page.
Expected Behavior:
* The debugger catches the original debugger statement.
* The step over and debugger buttons function correctly.
Actual Behavior:
* The debugger source is not reloaded
* The currently highlighted line is stuck at the next line, and doesn't go back to the debugger statement.
* The debugger buttons for stepping in and out, etc do not work.
* The reloaded page's content does appear to execute and stop at the breakpoint, but the debugger tool is broken and does not correctly display.
Working Behavior in race condition:
* Download the html and js file from the example, and run locally.
* Repeat the steps to reproduce and observe the expected behavior.
| Reporter | ||
Updated•9 years ago
|
Has STR: --- → yes
| Reporter | ||
Comment 1•9 years ago
|
||
Looks like an error is thrown:
> Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannel.suspend]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/webbrowser.js :: _willNavigate :: line 1943" data: no]
> Stack: _willNavigate@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/webbrowser.js:1943:7
> DebuggerProgressListener.prototype.onStateChange<@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/webbrowser.js:2536:7
> exports.makeInfallible/<@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:101:14
> @chrome://browser/content/tab-content.js:73:43
> this.E10SUtils.wrapHandlingUserInput@resource:///modules/E10SUtils.jsm:122:7
> @chrome://browser/content/tab-content.js:72:5
> EventLoop.prototype.enter@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/script.js:349:5
> ThreadActor<._pushThreadPause@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/script.js:542:5
> ThreadActor<._pauseAndRespond@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/script.js:752:7
> ThreadActor<.onDebuggerStatement@resource://gre/modules/commonjs/toolkit/loader.js -> resource://devtools/server/actors/script.js:1828:9
> @http://gregtatum.com/tmp/breakpoint/script.js:2:1
> Line: 1943, column: 0
>
>
> navigated; resolution of _defaultNode abortedPromise-backend.js:940
Comment 2•9 years ago
|
||
I've seen that error before. It's apparently an E10s issue. We have a bug open for it, but I've been unable to find it so far.
Updated•7 years ago
|
Product: Firefox → DevTools
Comment 4•6 years ago
|
||
I wonder if this was fixed. Greg, Honza could you try to reproduce?
Flags: needinfo?(odvarko)
Flags: needinfo?(gtatum)
| Reporter | ||
Comment 5•6 years ago
|
||
Ah, I'm not sure, I don't have that file on my webpage anymore :-/
Flags: needinfo?(gtatum)
Comment 6•6 years ago
|
||
Given all the work around race conditions and breakpoints, closing for now. I have not seen this issue in a while in my stress testing. Lets re-open if we see this happening again.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WORKSFORME
Updated•6 years ago
|
Flags: needinfo?(odvarko)
You need to log in
before you can comment on or make changes to this bug.
Description
•