J. Ryan Stinnett
8cbaf49b05
Bug 1054006 - Set chrome prefs in Browser Toolbox. r=bgrins
2014-08-15 15:33:00 -04:00
J. Ryan Stinnett
9df48c7d8b
Bug 1007059 - Enable WebIDE by default. r=paul
2014-08-13 15:10:00 -04:00
Brian Grinstead
c2f1079c9a
Bug 1050442 - If persisted, focus split console input when toolbox opens;r=jwalker
2014-08-15 07:52:08 -05:00
Brian Grinstead
9be5a27867
Bug 1050439 - Focus should be restored to previously active element after split console is closed;r=jwalker
2014-08-15 07:50:43 -05:00
Alexandre Poirot
e474c9a0f2
Bug 1053164 - Ensure that exception during debuggerserver instanciation are displayed. r=jryans
2014-08-13 05:11:00 -04:00
Tim Taubert
6a8ab950e4
Bug 1052756 - Fix Toolbox.destroy() to properly clean up with add-on targets r=Mossop
2014-08-13 14:42:29 +02:00
Brian Grinstead
cee724b7c5
Bug 1050857 - Options panel layout doesn't work well with translated text;r=mratcliffe
2014-08-12 07:09:33 -05:00
Michael Ratcliffe
300f2020f2
Bug 1041284 - Fix GC issues and re-enable browser_markupview_events.js r=jwalker
2014-08-07 22:35:19 +01:00
Brian Grinstead
382d8bc09e
Bug 1030318 - Enable devtools/framework tests with e10s. r=mratcliffe
2014-08-06 06:16:00 -04:00
Victor Porof
61420cf650
Bug 879008 - New UI for the sampling Profiler, r=rcampbell,fitzgen,pbrosset
2014-08-06 11:25:18 -04:00
Victor Porof
2839618251
Bug 879008 - Remove the old Profiler frontend, r=rcampbell
2014-08-06 11:25:17 -04:00
Ryan VanderMeulen
2c10257999
Merge m-c to fx-team. a=merge
2014-07-31 15:54:50 -04:00
Brian Grinstead
fe448e0bea
Bug 996778 - Remember split console height;r=msucan
2014-07-31 12:33:23 -05:00
Nathan Froyd
528da1d828
Bug 1045118 - move install rules in browser/devtools/*/Makefile.in to moz.build; r=mshal
2014-07-28 12:36:04 -04:00
Brian Grinstead
2a9cce45ac
Bug 1045333 - Refactor toolbox.toggleSplitConsole. r=jwalker
2014-07-29 11:50:00 +02:00
Brian Grinstead
93a9e6fb96
Bug 974550 - Add a preference to optionally persist split console state;r=msucan,jwalker
2014-07-28 15:54:41 -05:00
Panos Astithas
32509924c1
Fix the devtools window title when the options tab is selected (bug 1044488); r=jwalker
2014-07-28 21:02:29 +03:00
Brian Grinstead
10442f8575
Bug 1037145 - Remove esc as a keybinding to close responsive mode. r=paul
2014-07-24 07:59:00 +02:00
Trevor Saunders
7fdd19b194
bug 1036694 - merge nsIMarkupDocumentViewer into nsIContentViewer r=smaug
2014-07-09 17:27:49 -04:00
Brian Grinstead
63aa10c3f8
Bug 964356 - Expose preferences for editor defaults in options panel. r=mratcliffe
2014-07-18 11:39:00 -04:00
Michael Ratcliffe
584afa1e41
Bug 994732 - Make "Disable Cache" in Devtools persist (only when the toolbox is open) r=jwalker, r=pbrosset
2014-07-17 10:39:56 +01:00
Joe Walker
2712673d1f
Bug 1032789 - Pull together the various GCLI plugin points; r=mratcliffe
2014-07-10 14:37:09 +01:00
Athena
5d6af9ee0e
Bug 977262 - Add aria-roles/aria-selected to Toolbox tabs. r=bgrins f=marcoz
2014-07-08 07:42:00 +02:00
Alexandre Poirot
1d9e0ffb72
Bug 1013997 - Use only one compartment for all devtools modules. r=mossop, r=past
2014-07-07 06:07:00 -04:00
Carsten "Tomcat" Book
ecd8f82e11
Merge mozilla-central to mozilla-inbound
2014-07-07 15:20:32 +02:00
Athena
4fe3f2d513
Bug 977169 - Apply aria-label "x panel" to Toolbox r=bgrins f=marcoz
2014-07-07 11:27:10 +02:00
Panos Astithas
dce2293573
Avoid a race in CodeMirror initialization when setting breakpoints and don't let ESC stop navigation if the debugger is paused (bug 957174). r=vporof
2014-06-19 10:15:14 +03:00
Panos Astithas
20c7e4fd4b
Fix a couple of races around toolbox opening and tool selection by waiting for the actual tool panel to be selected (bug 988408). r=jwalker
2014-06-26 18:01:02 +03:00
Brian Grinstead
cddb92aace
Bug 1030318 - Enable some of the devtools/framework tests with e10s. r=jwalker
2014-06-25 13:42:00 +02:00
Jim Blandy
39dc0c6097
Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
...
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):
- Never set the buffer's mode.
Years ago, Emacs did not have a good JavaScript mode, so it made sense
to use Java or C++ mode in .js files. However, Emacs has had js-mode for
years now; it's perfectly serviceable, and is available and enabled by
default in all major Emacs packagings.
Selecting a mode in the -*- file variable line -*- is almost always the
wrong thing to do anyway. It overrides Emacs's default choice, which is
(now) reasonable; and even worse, it overrides settings the user might
have made in their '.emacs' file for that file extension. It's only
useful when there's something specific about that particular file that
makes a particular mode appropriate.
- Correctly propagate settings that establish the correct indentation
level for this file: c-basic-offset and js2-basic-offset should be
js-indent-level. Whatever value they're given should be preserved;
different parts of our tree use different indentation styles.
- We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
Remove tab-width: settings, at least in files that don't contain tab
characters.
- Remove js2-mode settings that belong in the user's .emacs file, like
js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Michael Ratcliffe
7cc87e56dd
Bug 994729 - Make box model guides move on layout view region hover r=bgrins
2014-06-24 17:26:38 +01:00
Paul Rouget
c479f323d9
Bug 1028014 - webide should be named webide, not app manager. r=dcamp
2014-06-23 17:36:11 +08:00
Michael Ratcliffe
8004a69d9a
Bug 1020984 - Fix highlighter when transforms have width & height of 0 r=pbrosset
2014-06-20 13:32:32 +01:00
Brian Grinstead
520de40555
Bug 1025057 - DevTools themes: thin toolbar button follow up - part 1;r=vporof
2014-06-20 06:51:42 -05:00
Vikneshwar
ee78456672
Bug 1003546 - Use Arrow function instead of bind(). r=fitzgen
2014-06-14 06:49:00 -04:00
Jordan Santell
49ac613efa
Bug 1024787 - Fix uncaught promise rejections in devtools/framework. r=jryans
2014-06-12 18:17:00 +02:00
Jordan Santell
9e3569b294
Bug 991075 - Fix unhandled promise errors. r=jryans
2014-06-12 18:03:00 +02:00
Brian Grinstead
f68c98d5d6
Bug 942292 - DevTools themes - make the toolbars thinner. r=vporof
...
CLOSED TREE
2014-06-13 09:11:32 -05:00
Ed Morley
5bce7ed98c
Backed out changeset 9fd9c035a76a (bug 942292) for making browser_canvas-frontend-slider-02.js fail 30-40% of the time
2014-06-13 18:45:27 +01:00
Patrick Brosset
fc2789b39a
Bug 1014547 - Add a css transform highlighter to the style-inspector; r=bgrins
2014-06-13 16:27:10 +02:00
Brian Grinstead
07065a4833
Bug 942292 - DevTools themes - make the toolbars thinner;r=vporof
2014-06-13 09:11:32 -05:00
Joe Walker
8b8893fee6
Bug 992309 - Don't leak gcli promise to other tests; r=mratcliffe
2014-06-09 15:16:26 +01:00
David Caldwell
a45309d554
Bug 907310 - (shift)+F5, Cmd/Ctrl+R should be available in Detached Devtools Window. r=bgrins
2014-05-09 17:41:43 -07:00
vikneshwar
3e1580f15a
Bug 991045 - Added Screenshot Button to toolbar's UI;r=pbrosset;
2014-05-30 10:47:49 +02:00
Brian Grinstead
735a2c9ac1
Bug 935803 - Display browser styles in the rule view (UA style sheet rules);r=pbrosset
2014-05-29 07:02:26 -05:00
Brian Grinstead
814ce474bf
Bug 991810 - Move the inspector button to the top left;r=vporof
2014-05-28 09:11:33 -05:00
Gijs Kruitbosch
2123363f1e
Bug 977009 - switch to Cu.cloneInto instead of JSON.parse(JSON.stringify(foo)) because it's faster, r=vporof
2014-05-26 13:25:00 +01:00
Michael Ratcliffe
aeb2111ad7
Bug 974171 - Add DEVTOOLS_TOOLBOX_* flags. r=jwalker
2014-04-15 11:01:27 +01:00
Gijs Kruitbosch
4a16535b19
Bug 1013518 - include CSS linter test in mochitest-devtools, r=bgrins
2014-05-22 00:35:53 +01:00
Francesco Lodolo (:flod)
5261f0c6db
Bug 1006299 - Rename options.enablePersistentLogging.tooltip to reflect new string content. r=vp
2014-05-21 06:04:00 -04:00