Closed
Bug 1201405
Opened 9 years ago
Closed 4 years ago
Update doc "Debugging a XULRunner Application"
Categories
(Developer Documentation Graveyard :: Mozilla Platform, defect, P5)
Developer Documentation Graveyard
Mozilla Platform
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: duanyao.ustc, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0
Build ID: 20150826023504
Steps to reproduce:
In doc "Debugging a XULRunner Application" (
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/XULRunner/Debugging_XULRunner_applications )
The recommanded way to debug an XULRunner Application is:
-----------------------------
Components.utils.import('resource://gre/modules/devtools/dbg-server.jsm');
if (!DebuggerServer.initialized) {
DebuggerServer.init();
// Don't specify a window type parameter below if "navigator:browser"
// is suitable for your app.
DebuggerServer.addBrowserActors("myXULRunnerAppWindowType");
}
DebuggerServer.openListener(6000);
-----------------------------
However this no longer works in recent releases (40 tested), because `DebuggerServer.openListener` method no longer exists. I can't figure out how to make DebuggerServer again.
Updated•7 years ago
|
Component: General → Mozilla Platform
Comment 1•6 years ago
|
||
The MDN team is no longer actively working on Mozilla Platform docs. Volunteer contributions are welcome.
Priority: -- → P5
Comment 2•4 years ago
|
||
MDN Web Docs' bug reporting has now moved to GitHub. From now on, please file content bugs at https://github.com/mdn/sprints/issues/ and platform bugs at https://github.com/mdn/kuma/issues/.
Status: UNCONFIRMED → RESOLVED
Closed: 4 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•