Ed Morley
a9d17b7cb7
Backed out changeset 894e40121370 (bug 917226) for mochitest-chrome failures
2014-03-27 16:11:59 +00:00
Victor Porof
238e8b812c
Bug 917226 - Build a canvas inspection tool, r=rcampbell
2014-03-27 10:21:37 -04:00
Victor Porof
16c4ba710d
Bug 988329 - Netmonitor pie charts shouldn't display 'Loading' when the source data is available but empty, r=rcampbell
2014-03-26 16:07:30 -04:00
Victor Porof
62a997bc99
Bug 988328 - Netmonitor pie charts shouldn't have hover effects when there's only one slice available, r=rcampbell
2014-03-26 16:07:30 -04:00
Patrick Brosset
c14e98b58e
Bug 966424 - Intermittent browser_bug765105_background_image_tooltip.js; r=jwalker
2014-03-19 10:11:34 +01:00
Dave Townsend
2521a04661
Bug 983847: Frequent CSS errors in spectrum-frame.xhtml. r=pbrosset
2014-03-18 09:18:02 -07:00
Brandon Benvie
6ca6258cd1
Bug 970172 - Prevent VariablesView Variables from handling clicks while editing. r=vporof
2014-02-12 15:33:59 -08:00
Michael Ratcliffe
0ef4f577a8
Bug 702577 - Show font-family tooltip r=mratcliffe
2014-03-10 13:24:58 +00:00
Mihai Sucan
448447a0aa
Bug 584733 - Code highlight all JS objects and functions in console output; r=bbenvie
2014-03-04 21:59:00 +02:00
J. Ryan Stinnett
ca83343b85
Bug 976679 - Move event-emitter to toolkit. r=paul
...
--HG--
rename : browser/devtools/shared/event-emitter.js => toolkit/devtools/event-emitter.js
rename : browser/devtools/shared/test/browser_eventemitter_basic.js => toolkit/devtools/tests/mochitest/test_eventemitter_basic.html
2014-02-25 22:22:05 -06:00
Brian Grinstead
cd5ddb8a04
Bug 972064 - Fix Spectrum.js warning in browser console. r=jwalker
2014-02-13 11:54:05 -06:00
Phil Ringnalda
c422c4939c
Merge f-t to m-c
2014-02-15 10:10:31 -08:00
Masayuki Nakano
b3b19a9e2f
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
d20ea8c06f
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
eab908ddde
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
0460cf4ed2
Bug 969448 - Netmonitor selected filter reset to "All" upon every new page request, r=rcampbell
2014-02-11 09:25:21 -05:00
Patrick Brosset
4b885fdd46
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
89b91b0de3
Backed out changeset 18d70a3136f5 (bug 932896) for mochitest-other bustage on a CLOSED TREE
2014-02-05 11:36:02 +01:00
Paul Rouget
b61d77d686
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
0a8be38c65
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
7aefea5bcb
Bug 962070 - Tooltips for sources contain the group URL instead of the file URL, r=vporof
2014-02-04 13:04:38 +02:00
Patrick Brosset
7c890d7d69
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
e9ae497850
Bug 946601 - Add performance statistics/piecharts in the Network Monitor, r=rcampbell
2014-02-01 08:37:53 +02:00
Lalit Khattar
6ff111d053
Bug 944640 - Add a "Watch" button on the new inspect popup. r=vporof
2014-01-31 13:01:27 -05:00
Brian Grinstead
f83d4edd10
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
1a858efc7f
Bug 936421 - Update the breadcrumbs as per Shorlander's new designs. OVERRIDE HOOK;r=pbrosset
2014-01-30 14:24:30 -06:00
Panos Astithas
97a45e85f9
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
b2b2644858
Bug 947612 - Fix VariablesView so that editableName._onCleanup is called. r=vp
2014-01-17 10:40:41 -08:00
Alexey Novak
e4106b450b
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
6ccce03e88
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
735f8786f3
Bug 943883 - DevTools themes - theme sidemenuwidget, r=bgrins, australis
...
--HG--
rename : browser/themes/osx/devtools/itemArrow-ltr.png => browser/themes/shared/devtools/images/itemArrow-ltr.png
rename : browser/themes/osx/devtools/itemArrow-rtl.png => browser/themes/shared/devtools/images/itemArrow-rtl.png
2014-01-07 11:58:07 +02:00
Mihai Sucan
384ff53c29
Bug 952708 - console.log escapes special characters. r=vporof
2014-01-07 22:50:30 +02:00
Patrick Brosset
52da201abc
Bug 952294 - Let devtools tooltip size be automatically set. r=miker
2014-01-08 09:49:12 -05:00
Victor Porof
54ba9b8a7e
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
6571c4eeee
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
d7ab6c1c6e
Bug 947710 - Stop evaling and catch errors in Manifest Editor. r=vporof
2014-01-06 11:14:21 -06:00
Victor Porof
aa869084d3
Bug 951633 - Change the wording in some WidgetMethods comments, r=past
2014-01-04 00:04:24 +02:00
Victor Porof
1070182c25
Bug 951633 - Drop the <xul:menulist> support for WidgetMethods, r=past
2014-01-03 23:42:16 +02:00
Victor Porof
51c2d7c78f
Bug 952767 - Variables view scopes should always be lazily populated, r=past
2014-01-03 23:41:28 +02:00
Mihai Sucan
7b4599def0
Bug 843004 - Part 3: VariablesView ObjectActor pretty output; r=benvie,vporof
2013-12-18 20:17:05 +02:00
Victor Porof
1fe202654f
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
35f2f26849
Bug 951794 - Make the tracers colors easier to read, r=vporof
2013-12-19 20:12:12 +02:00
Victor Porof
dca29a6f1a
Bug 951674 - Vertical splitter isn't shown for the Events tab, r=fitzgen
2013-12-18 19:10:16 +02:00
Nick Fitzgerald
00a923905f
Bug 929349 - Integrate a tracing debugger into our existing debugger; r=vporof,past
2013-12-18 14:17:27 -08:00
Tim Taubert
ec7b5c1c0a
Backed out changeset eb4d2915ab26 (bug 951674)
2013-12-18 20:07:15 +01:00
Victor Porof
3fc65af25e
Bug 951674 - Vertical splitter isn't shown for the Events tab, r=fitzgen
2013-12-18 19:10:16 +02:00
Victor Porof
d6f26d3a74
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
ad354ac150
Bug 830344 - Part 1: Remove the lazy append mechanism in the variables view, r=past
2013-12-18 19:01:38 +02:00
Victor Porof
89e253f487
Bug 950656 - The separator string between the headers name and value isn't shown, r=past
2013-12-18 19:01:38 +02:00
Victor Porof
9bb2857db1
Bug 949561 - The VariablesView and SideMenuWidget should use hardware acceleration when possible, r=fitzgen
2013-12-12 22:14:29 +02:00
Victor Porof
fde66faaff
Bug 948873 - Function closures and other psuedo variables shouldn't have a bottom border in the variables view, r=past
2013-12-12 22:14:29 +02:00
Victor Porof
c021c97d96
Bug 758157 - Clearly indicate overridden variables, r=past
2013-12-12 19:38:12 +02:00
Patrick Brosset
beaffb5a0f
Bug 945068 - Image preview tooltip displays correct image dimensions, r=harth
2013-12-12 09:31:23 +01:00
Patrick Brosset
3287342f7d
Bug 726427 - CSS transform preview tooltip in style inspector, r=bgrins
2013-12-11 20:50:15 +01:00
Victor Porof
e53643de5b
Bug 947952 - Rename "non-*" attributes in the Variables View to avoid double negation, r=paul
2013-12-09 18:58:55 +02:00
Victor Porof
8d6cff55e3
Bug 905981 - Have a classic vertical display of stack frames persistently available in the debugger UI, r=rcampbell
2013-12-06 18:33:59 +02:00
Brian Grinstead
e3ecf71a28
Bug 941799 - DevTools themes - variables view should match current theme;r=vporof
2013-12-06 10:24:06 -06:00
Carsten "Tomcat" Book
d1ad182828
Backed out changeset 57c170af6a23 (bug 726427) for Mac 10.6 mochitest Failure in Bug 947126
2013-12-06 14:50:05 +01:00
Patrick Brosset
4065637cbe
Bug 726427 - CSS transform preview tooltip in style inspector. r=bgrins
2013-12-05 09:35:35 -05:00
Brandon Benvie
4a242405f7
Bug 808371 - Allow adding new properties to objects in the VariablesView. r=vp, r=jryans
2013-12-02 20:07:13 -08:00
Victor Porof
d6057ceb5c
Bug 725235 - In the debugger, show a details bubble while hovering over a variable or property in the source editor, r=past,rcampbell
2013-11-29 16:47:52 +02:00
Victor Porof
09c021017a
Bug 942120 - Avoid 'missing method' errors thrown by nsIScrollBoxObject when the nodes aren't visible. r=anton
2013-11-22 15:23:56 +02:00
Brian Grinstead
219aad07eb
Bug 862558 - Web Console should always be available / visible;r=msucan
2013-11-11 15:13:28 -06:00
Patrick Brosset
1a3c87336c
Bug 931845 - Shows image tooltips immediately and with no animation. r=bgrins
2013-11-18 13:03:20 -05:00
Brian Grinstead
e8ed5f7806
Bug 916766 - Consistent theming across panels - added scratchpad and variable view;r=paul
2013-11-18 08:14:40 -06:00
Patrick Brosset
fc21c5dfa2
Bug 889638 - Color picker tooltip in the CSS rule view. r=harth
2013-11-15 21:46:59 -05:00
Brandon Benvie
76c49c9951
Bug 862849 - Remove __iterator__ use from the devtools. r=vp
2013-11-07 13:23:55 -08:00
Wes Kocher
5e64c6d1a6
Backed out changeset 7dd13d06f132 (bug 862849) for breaking webconsole tests
2013-11-06 15:13:53 -08:00
Brandon Benvie
18e8ada818
Bug 862849 - Remove __iterator__ use from the devtools. r=vp
2013-10-17 16:05:14 -07:00
Patrick Brosset
accb41d63a
Bug 932937 - Images are resized on the server-side for image preview tooltips. r=harth
2013-11-05 11:19:29 -05:00
Victor Porof
a27ebe4b32
Bug 930928 - Shader compilation errors should be displayed in the editor, r=rcampbell,anton
2013-11-05 14:07:37 +02:00
Patrick Brosset
f6a17cd145
Bug 932218 - Hides previous image preview tooltip in markup view when another one shows. r=bgrins
2013-10-31 23:10:44 -04:00
Victor Porof
82d5d0bafd
Bug 931463 - Shader editor programs checkboxes misaligned on Linux, r=past
2013-10-27 20:44:02 +02:00
Victor Porof
dfa06e35ef
Bug 931452 - Checkbox focus artifact on Linux in the Shader Editor, r=past
2013-10-27 20:43:55 +02:00
Patrick Brosset
e8f694c63f
Bug 765105 - Tooltip shared component, showing image previews in markup, css rules and computed views, r=miker,harth
2013-10-26 00:51:01 +05:30
J. Ryan Stinnett
13ffa3457b
Bug 922144 - Part 2: Actions first option for Variables View. r=vporof
...
--HG--
extra : rebase_source : 07b4de41e6e9f5f9636ec742b1511950cdca67af
2013-10-24 13:03:17 -05:00
J. Ryan Stinnett
f95c51dc75
Bug 922144 - Part 1: Aligned values option for Variables View. r=vporof
...
--HG--
extra : rebase_source : 20a8e6ed186b85189b2cbe95b52c8b007e7ea09b
2013-10-23 09:57:00 -05:00
Victor Porof
39ed225e41
Bug 910955 - Implement a live WebGL shader editor, r=dcamp
2013-10-25 10:18:41 +03:00
Victor Porof
8d0e34b10d
Bug 930643 - Sorting by column is broken in the Network Monitor, r=jryans
2013-10-25 10:15:53 +03:00
Nick Alexander
571dc2e39b
Backed out changeset 69ebfb936442 (bug 862849) for bc orange on a CLOSED TREE.
...
--HG--
extra : amend_source : 0fbcba6a47f79369df9628f3ca1aa2ebf02a6efa
2013-10-23 13:19:58 -07:00
Brandon Benvie
d769f13cbc
Bug 862849 - Remove __iterator__ use from the devtools. r=vp
2013-10-18 12:28:40 -07:00
Victor Porof
07b8c606bf
Bug 927375 - Debugger UI should be responsive when docked to the side, r=fitzgen
2013-10-19 12:26:46 +03:00
Victor Porof
98b103febd
Bug 928278 - BreadcrumbsWidget should use setNamedTimeout, r=past
2013-10-18 11:13:36 +03:00
Panos Astithas
70153db1e2
Bug 862344 - Hide non-enumerable properties of parsed JSON in the network details. r=vporof
2013-10-17 11:21:08 +03:00
Brandon Benvie
96d2bb49cb
Bug 926725 - Create DevToolsUtils.defineLazyPrototypeGetter and use it in VariablesView Scopes. r=fitzgen, r=vp
2013-10-15 09:49:15 -07:00
Brandon Benvie
a4802a4a08
Bug 902539 - Make VariablesView ignore right clicks. r=vp
2013-10-14 14:40:05 -07:00
Brandon Benvie
bde6c497e0
Backout 55adba3eb627 bug 902539 for missing review comment.
2013-10-15 12:09:38 -07:00
Brandon Benvie
7f1e65fada
Bug 902539 - Make VariablesView ignore right clicks.
2013-10-14 14:40:05 -07:00
J. Ryan Stinnett
7ff6dae5ad
Bug 926501 - VariablesView.rawObject should use enumerable container. r=vporof
2013-10-14 11:33:48 -05:00
Ratnadeep Debnath
6a9b53857a
Bug 926479 - Replace className comparisons with classList.contains in SideMenuWidget.jsm. r=vporof
2013-10-15 13:28:25 -04:00
Brian Mooney
868038d725
Bug 862019 - Add Ctrl-C listener to Variables View for copying items, r=vporof
2013-10-06 14:17:14 +03:00
Victor Porof
003cdd1762
Bug 800857 - Implement debugger frontend for breaking on dom events, r=rcampbell
2013-10-04 10:33:08 +03:00
Victor Porof
185669c375
Bug 800857 - Simplify the ensureElementIsVisible method in the SideMenuWidget, r=rcampbell
2013-10-04 10:33:07 +03:00
Brandon Benvie
7a78473ee8
Bug 843019 - Add VariablesViewController#setSingleVariable. r=vp, r=msucan
2013-10-01 13:17:20 -07:00
Panos Astithas
d043b7987a
Bug 810966 - Display closed over variables in the variables view for functions that are not stack frames; r=vporof,msucan
2013-09-25 19:03:17 +03:00
Victor Porof
d7041cc65a
Bug 876277 - Remove the ugly _wasToggled hack from the VariablesView that tests relied on, r=past
2013-09-13 16:23:15 +03:00
Victor Porof
ae003da887
Bug 876277 - Add getScopeAtIndex() to make scopes more easily accessible from tests, and fix a few inconsistencies in VariablesView.jsm, r=past
2013-09-13 16:23:15 +03:00
Victor Porof
6e379bd9be
Bug 876277 - Clicking on global search results lines (not matches) was broken after 877686, fix it, r=past
2013-09-13 16:23:15 +03:00
Victor Porof
a2c8e921ab
Bug 876277 - Make widgets always perform a refresh operation when the selected item is changed, to prevent any consumers from dealing with such scenarios, r=past
2013-09-13 16:23:15 +03:00
Victor Porof
bfa0055398
Bug 876277 - Make widgets always return labels and values in the displayed order, to avoid tests failing because of the async way in which items could be added, r=past
2013-09-13 16:23:14 +03:00