3

I am using Firefox regular edition since years and have very seamless experience while browsing and debugging apps. Few months back firefox launched its developer edition, so I switched to FF developer edition. But what I experienced is that, it crashes a lot while debugging JS (angularjs and jquery code) and some times the debugger does not hit at all even though that line of codes are being executed. This is really an annoying behaviour of firefox developer edition. Why it is so unstable even though I haven't installed any addons at all. Is Firefox Developer Edition is unstable or it is something related to my system.

What I observed so far if some line of my code in js (Angular, Jquery or plain vanilla) has any error (like calling any undefined scope variable in controller in angularjs or calling any function from services which is undefined in angularjs) it crashes while executing same in chrome it simply skips that line and shows error in console. For debugging I apply breakpoints at multiple lines and then use F8 to jump line.

Is there any solution to solve this issue?

Here is crash report.

4

2 回答 2

4

截至 2017 年 7 月:

Firefox 开发者版是 Firefox Beta。

有以下 Firefox 频道/存储库:

Release (mozilla-release) – Firefox 的正式版本。Firefox 按六周的时间表发布,这意味着每六周就会有新版本的 Firefox 发布。

Beta (mozilla-beta) – 在 Firefox 的下一个版本成为正式版本之前对其进行测试。Firefox Beta 每周发布一次,我们每个周期都会有六个 beta 版本,除非有导致额外 beta 版本的 chemspills。

Nightly (mozilla-central) – 包含实验性功能。Nightly 自然是每晚发布,所有变化都在 Mozilla-central 上进行。

当前稳定版是 54 版,当前 beta/开发者版是 55 版,当前 nightly 版是 56 版。

https://hacks.mozilla.org/2017/04/simplifying-firefox-release-channels/


截至 2015 年 1 月:

Firefox 开发者版基本上是一个alpha 质量版本,包含从夜间频道登陆的稳定新功能。

有以下 Firefox 频道/存储库:

Release (mozilla-release) – Firefox 的正式版本。Firefox 按六周的时间表发布,这意味着每六周就会有新版本的 Firefox 发布。

Beta (mozilla-beta) – 在 Firefox 的下一个版本成为正式版本之前对其进行测试。Firefox Beta 每周发布一次,我们每个周期都会有六个 beta 版本,除非有导致额外 beta 版本的 chemspills。

Aurora / Developer Edition (mozilla-aurora) – 适用于 Web/平台开发人员和早期采用者。Firefox Aurora 每天早上在 mozilla-aurora 上的更改稳定后发布。

Nightly (mozilla-central) – 包含实验性功能。Nightly 自然是每晚发布,所有变化都在 Mozilla-central 上进行。

当前稳定版是35版,当前beta版是36版,当前极光/开发者版是37版。

https://wiki.mozilla.org/Release_Management/Release_Process

于 2015-01-20T08:10:08.950 回答
2

Firefox devtools 团队有许多与丢失断点相关的未解决的错误,它们是一个高优先级。潜在的问题是字节码编译器生成的源位置信息(Firefox 将 JS 编译为字节码,然后如果实际使用频率足够值得花时间,则将字节码编译为机器码)不是非常准确。例如,请参阅错误 1003554 - 单步执行 try 语句时的奇怪行为

于 2015-02-27T20:30:55.143 回答