Brian Grinstead
2f24e9af5a
Bug 972064 - Fix Spectrum.js warning in browser console. r=jwalker
2014-02-13 11:54:05 -06:00
Phil Ringnalda
826e1727ab
Merge f-t to m-c
2014-02-15 10:10:31 -08:00
Masayuki Nakano
a3ff9acf01
Bug 969247 part.1 Remove or replace DOM_VK_ENTER and NS_VK_ENTER users r=smaug
2014-02-15 09:57:39 +09:00
Victor Porof
8b67475fe5
Bug 859135 - Hovering over a request with an image response should show a popup displaying that image, r=rcampbell
2014-02-14 14:22:06 -05:00
Victor Porof
43cbb23d9e
Bug 859136 - Requests with an image response should display a thumbnail near the file name, r=rcampbell
2014-02-14 14:22:06 -05:00
Victor Porof
7516a5fb74
Bug 969448 - Netmonitor selected filter reset to "All" upon every new page request, r=rcampbell
2014-02-11 09:25:21 -05:00
Kevin Grandon
885485c345
Bug 959275 - Add telemetry support for custom dev tools. r=mratcliffe
2014-02-10 15:54:30 -05:00
Patrick Brosset
4e80a68183
Bug 932896 - Retrieves image data from server for image tooltips and makes tooltip size a pref, r=jwalker,ttaubert
2014-02-05 11:53:46 +01:00
Carsten "Tomcat" Book
3112df3f5d
Backed out changeset 18d70a3136f5 (bug 932896) for mochitest-other bustage on a CLOSED TREE
2014-02-05 11:36:02 +01:00
Paul Rouget
b0677e5fd5
Bug 932896 - Retrieves image data from server for image tooltips and makes tooltip size a pref, r=jwalker,ttaubert
2014-02-05 10:02:52 +01:00
Victor Porof
78a589c5f8
Bug 967378 - Part 1: Network statistics: don't rely on parseFloat to deal with numbers in the charts, r=rcampbell
2014-02-04 16:57:08 +02:00
kushagra singh
b2db1dbc89
Bug 962070 - Tooltips for sources contain the group URL instead of the file URL, r=vporof
2014-02-04 13:04:38 +02:00
Rob Campbell
de6e18c07d
Bug 962531 - Page Up and Page Down should always scroll the output area in Console; r=msucan
2014-02-01 08:22:45 -05:00
Patrick Brosset
b672dbbcdb
Bug 952277 - DOMNodes can be highlighted and selected from the debugger [Australis]; r=past, vporof
2014-02-01 10:24:44 +01:00
Victor Porof
9d304c8315
Bug 946601 - Add performance statistics/piecharts in the Network Monitor, r=rcampbell
2014-02-01 08:37:53 +02:00
Lalit Khattar
1e207c40a2
Bug 944640 - Add a "Watch" button on the new inspect popup. r=vporof
2014-01-31 13:01:27 -05:00
Brian Grinstead
7f5e8980fb
Bug 957117 - DevTools Themes: Use light theme for top tabbar and toolbars OVERRIDE HOOK;r=vporof
2014-01-30 14:42:15 -06:00
Brian Grinstead
9c694d75ea
Bug 936421 - Update the breadcrumbs as per Shorlander's new designs. OVERRIDE HOOK;r=pbrosset
2014-01-30 14:24:30 -06:00
Mihai Sucan
4d26e403d3
Bug 961431 - Autocomplete suggestions in split console are sliding down. r=robcee
2014-01-28 15:55:19 +02:00
Victor Porof
c3547987c8
Bug 964700 - Make the errors logged by Parser.jsm also contain the problematic source url, r=past
2014-01-28 12:31:51 +02:00
Girish Sharma
f1a987435e
Bug 962652 - Autocomplete popup's isOpen getter is too strict, r=msucan
2014-01-28 20:42:02 +05:30
Carsten "Tomcat" Book
fd5b12ac55
Backed out changeset a76a4f921987 (bug 964700) for XPC Bustage on a CLOSED TREE
2014-01-28 14:03:38 +01:00
Victor Porof
bfc0d9228b
Bug 964700 - Make the errors logged by Parser.jsm also contain the problematic source url, r=past
2014-01-28 13:24:45 +02:00
Victor Porof
13ce9e2aa2
Bug 963932 - Refactor the output emitted by Parser.jsm to avoid too much useless nesting, r=past
2014-01-28 12:18:20 +02:00
Alexey Novak
d0067989e8
Bug 956804 - Use DevToolsUtils.reportException in Parser.jsm; r=fitzgen
2014-01-23 09:55:16 -08:00
Panos Astithas
8609912471
Make the debugger frontend cope with an already connected target (bug 933212); r=jryans,fitzgen
...
* Made the DebuggerClient, which is actually the RootActor front, not consider one of the attached child fronts as "active". Since a single DebuggerClient (or RootFront) is kept around for the App Manager's lifetime, it makes sense to move the notion of "active" tab to the toolbox's target. As each toolbox gets destroyed, the fronts should be detaching from their actors (if they are stateful) so that the app is no longer in a debugging state. Debugging a new app (or reconnecting to a previous one) will create new fronts anyway.
* Slightly refactored the TabClient, ThreadClient, SourceClient and TracerClient towards a protocol.js-based architecture, by adding parent-child references and lifecycle management. Now a tab-scoped thread actor for instance has the tab as its parent, while a global-scoped thread actor (chrome debugger) has the DebuggerCLient (RootFront) as its parent. This lets parents reference their children, so that caching in the target object can work. It also allowed me to move some methods from the DebuggerClient to the actual front that should be responsible, like reconfigureTab, reconfigureThread and attachThread. These methods now use DebuggerClient.requester, too.
* Added some error handling in the debugger client requester around "before" and "after" callbacks, which exposed some errors in tests that are now fixed.
* Fixed the state handling in the thread actor so that merely detaching from a thread doesn't put it in the exited state. This is the part that what was necessary for Firebug's use case.
* Properly loading tracer and webgl actors now on b2g.
2014-01-14 17:39:40 +02:00
Brandon Benvie
7fd011e00b
Bug 947612 - Fix VariablesView so that editableName._onCleanup is called. r=vp
2014-01-17 10:40:41 -08:00
Joe Walker
b524ae5e05
Bug 927423 - Add promise return to EventEmitter.once; r=bbenvie
2014-01-15 10:33:18 +00:00
Alexey Novak
a1181528ea
Bug 957634: Changed Tooltip's setTextContent function signature. Now Tooltip can contain a warning image 32x32 when isAlertTooltip passed = true; r=vp
2014-01-14 08:59:43 +02:00
Victor Porof
beda0e466d
Bug 957187 - The variable inspection popup never appears in the right place on Linux and Windows, r=past
2014-01-08 16:59:00 +02:00
Victor Porof
01224b2507
Bug 943883 - DevTools themes - theme sidemenuwidget, r=bgrins, australis
2014-01-07 11:58:07 +02:00
Mihai Sucan
fb6aefb99e
Bug 952708 - console.log escapes special characters. r=vporof
2014-01-07 22:50:30 +02:00
Patrick Brosset
4c6d2bfc9a
Bug 952294 - Let devtools tooltip size be automatically set. r=miker
2014-01-08 09:49:12 -05:00
Victor Porof
58d2e24191
Bug 951795 - Use WidgetMethod's empty text attribute instead of a deck in the tracer, r=fitzgen
2014-01-07 11:57:00 +02:00
Victor Porof
7f46fe1d07
Bug 952817 - VariablesView.createHierarchy should always be called when the view is emptied, r=benvie
2014-01-07 10:03:17 +02:00
J. Ryan Stinnett
5bf5ca125c
Bug 947710 - Stop evaling and catch errors in Manifest Editor. r=vporof
2014-01-06 11:14:21 -06:00
Victor Porof
d3d2bd5ad3
Bug 956568 - Display more meaningful error information when Parser.jsm is sad, r=past
2014-01-06 08:41:19 +02:00
Victor Porof
bef86c43fd
Bug 951633 - Change the wording in some WidgetMethods comments, r=past
2014-01-04 00:04:24 +02:00
Victor Porof
dbcc001303
Bug 951633 - Drop the <xul:menulist> support for WidgetMethods, r=past
2014-01-03 23:42:16 +02:00
Victor Porof
869e6781bc
Bug 952767 - Variables view scopes should always be lazily populated, r=past
2014-01-03 23:41:28 +02:00
Victor Porof
c6a7097220
Bug 952734 - Sources with LabeledStatements makes ParserHelpers.getNodeLocation puke, r=past
2014-01-03 23:41:28 +02:00
Mihai Sucan
fce426d54e
Bug 843004 - Part 3: VariablesView ObjectActor pretty output; r=benvie,vporof
2013-12-18 20:17:05 +02:00
Victor Porof
333b219036
Bug 952047 - The Tracer view should get its background color from the theme body, r=fitzgen
2013-12-19 20:12:25 +02:00
Nick Fitzgerald
3757e811dd
Bug 951794 - Make the tracers colors easier to read, r=vporof
2013-12-19 20:12:12 +02:00
Victor Porof
eaddd02cef
Bug 951674 - Vertical splitter isn't shown for the Events tab, r=fitzgen
2013-12-18 19:10:16 +02:00
Nick Fitzgerald
3930bddb92
Bug 929349 - Integrate a tracing debugger into our existing debugger; r=vporof,past
2013-12-18 14:17:27 -08:00
Tim Taubert
3ab6f7fab4
Backed out changeset eb4d2915ab26 (bug 951674)
2013-12-18 20:07:15 +01:00
Victor Porof
de3aff672c
Bug 951674 - Vertical splitter isn't shown for the Events tab, r=fitzgen
2013-12-18 19:10:16 +02:00
Victor Porof
c62cbae393
Bug 830344 - Part 2: Implement pagination when expanding objects with lots of properties, r=past
2013-12-18 19:01:38 +02:00
Victor Porof
273be2c44e
Bug 830344 - Part 1: Remove the lazy append mechanism in the variables view, r=past
2013-12-18 19:01:38 +02:00