Commit Graph

2218 Commits

Author SHA1 Message Date
Ruturaj
6a39600b18 Bug 1253195 - Separate filter and search boxes visually, and make the text styling consistent. r=ntim
MozReview-Commit-ID: 1KZQA9X44Qi
2016-07-08 23:03:00 +02:00
Wes Kocher
4725525760 Merge m-c to fx-team, a=merge CLOSED TREE 2016-07-08 15:04:54 -07:00
Brian Grinstead
f3214d3c0b Bug 1285225 - Set accesskey and disabled properties on menuitems with submenus in Menu API;r=jdescottes
MozReview-Commit-ID: GN9j5pEn3cH
2016-07-08 07:24:09 -07:00
Carsten "Tomcat" Book
75e7b5bab2 merge fx-team to mozilla-central a=merge 2016-07-08 11:57:15 +02:00
Lin Clark
72d422fb86 Bug 1285348 - New console frontend: disable in browser toolbox. r=bgrins
--HG--
extra : rebase_source : cff98e95cd5b21480990f849569e7fbd2c63b329
2016-07-07 16:08:12 -04:00
Wes Kocher
86a74db006 Merge m-c to autoland, a=merge 2016-07-07 17:36:17 -07:00
Lin Clark
75503e8ad4 Bug 1283893 - New console frontend: required prop severity is sometimes undefined. r=bgrins
--HG--
extra : rebase_source : fb164f3f1b564b9c9bb7b0716275cc32a2f84843
2016-07-06 17:47:16 -04:00
Julian Descottes
7302908ebc Bug 1284851 - fix HTMLTooltip capturing events on invisible arrow container;r=bgrins
MozReview-Commit-ID: Ik85IPt7BIB

--HG--
extra : rebase_source : 011c428d3fd66410f599570af28e8a894e7ecf80
2016-07-06 22:03:57 +02:00
Julian Descottes
df13b10281 Bug 1285189 - change default value of HTMLTooltip:useXulWrapper to false;r=ochameau
MozReview-Commit-ID: 4uEqkVbqcsC

--HG--
extra : rebase_source : 384969e88f8fb3ed23187c12d305acc113cf6a2c
2016-07-07 11:57:29 +02:00
Carsten "Tomcat" Book
1e5237c994 merge mozilla-inbound to mozilla-central a=merge 2016-07-07 11:41:27 +02:00
Tom Tromey
6a91e5346c Bug 1276349 - Fix DAMP regression by speeding up _isURL. r=bgrins
MozReview-Commit-ID: C7khVe46Vjk

--HG--
extra : rebase_source : 991395b28fdc0bc6296af866a3e7b4ddd6eda9c2
2016-07-05 11:33:01 -06:00
Nicolas Chevobbe
eaa1f24d14 Bug 1261714 - Fix dead CPOW intermittent on browser_toolbox_options_disable_js.js. r=jryans
MozReview-Commit-ID: G2De93K0Tgv

--HG--
extra : rebase_source : 4b77cdad5f749555acd470b61ca9627c805f1ad5
2016-07-05 23:24:21 +02:00
Nick Fitzgerald
7b0a1f6dee Bug 1261869 - Fix leaks in devtools; r=ejpbruel
There are two leaks addressed in this commit:

1. The thread actor's `_debuggerSourcesSeen` set was never cleared. This set
exists only as a performance optimization to speed up `_addSource` in cases
where we've already added the source. Unfortunately, this set wasn't getting
cleared when we cleared debuggees out and it ended up keeping the
`Debugger.Source`, its referent, and transitively its referent's global alive. I
figured it was simpler to make it a `WeakSet` than to add it as a special case
in `ThreadActor.prototype._clearDebuggees` and manage the lifetimes by hand. I
think this fits well with its intended use as an ephemeral performance
optimization.

2. Due to a logic error, we were not clearing debuggees in the memory actor's
`Debugger` instance on navigations. This isn't really a "proper" leak, in that
if you forced a GC, the old debuggees would go away as `Debugger` holds them
weakly, however if there was no GC between navigations, then you could still see
the old windows (and everything they "retained") as roots in the snapshot. This
issue is straightforward to fix once identified: ensure that `_clearDebuggees`
is actually called on navigation.

Finally, this commit adds a test that we don't leak Window objects when devtools
are open and we keep refreshing a tab. When it fails, it prints out the leaking
window's retaining paths.
2016-07-06 08:37:57 -07:00
Julian Descottes
d367c125c7 Bug 1267403 - HTMLTooltip tests: destroy tooltips at the end of tests;r=ochameau
MozReview-Commit-ID: 2jMKxlsWId2

--HG--
extra : source : 806822ced9a2a28b81a66180e25d2d204227a08b
extra : histedit_source : fc3122c6d332db121bedf494553bc9d6797babfc
2016-07-04 16:02:37 +02:00
Julian Descottes
3aa417586a Bug 1267403 - HTMLTooltip: add useXulWrapper option when displayed in a XUL document;r=ochameau
The HTMLTooltip supports an additional configuration parameter "useXulWrapper".
When set to true, if the tooltip is displayed in a XUL document, a XUL panel
will be used as an additional container for the tooltip.

This allows the tooltip to be displayed anywhere on the screen and can be
useful when displayed in small toolboxes.

MozReview-Commit-ID: 63kv4vAeW5R

--HG--
extra : source : fc4d902ff01ee92a5b6742d44286e5feaaba1500
extra : intermediate-source : 126f43ff3be5505920946a77ad82401c6bbaebef
extra : histedit_source : 863888c014723f7e95742079395497ba1a30aa36%2C13ba9aaf80acb96c587739c767c20a8f0f6a9a5a
2016-07-06 14:50:44 +02:00
Luke Chang
b5cb21ec6c Bug 1263104 - Ctrl+F in Storage Inspector should open search. r=mratcliffe 2016-07-05 20:21:00 +02:00
Lin Clark
8674b1ac25 Bug 1283870 - New console frontend: Use reps to render responses from the backend. r=bgrins
MozReview-Commit-ID: 36TkWMPePIT
2016-07-05 17:38:05 -07:00
Ian Moody
327e597570 Bug 1260297 - Force LTR direction for the eydropper color value so the # character doesn't move depending on colour in RTL locales. r=jryans
MozReview-Commit-ID: 3T5kjXB3i8d

--HG--
extra : transplant_source : Gx%20%7FZ%06%93k%EF%D0%C9%C8%A7%0F%9Du9%8E%5E%B6
2016-07-02 22:49:52 +01:00
Greg Tatum
84f5e124c1 Bug 1226898 - Make autoscroll distance depend on the document height r=pbro
--HG--
rename : devtools/client/inspector/markup/test/browser_markup_dragdrop_autoscroll.js => devtools/client/inspector/markup/test/browser_markup_dragdrop_autoscroll_01.js
rename : devtools/client/inspector/markup/test/doc_markup_dragdrop_autoscroll.html => devtools/client/inspector/markup/test/doc_markup_dragdrop_autoscroll_02.html
2016-07-05 11:52:25 -07:00
Gregory Szorc
021d3fdfc7 Merge mozilla-central to mozilla-inbound 2016-07-06 18:26:17 -07:00
Lin Clark
4062790276 Bug 1264696 - [rep tests] Add tests for string rep. r=Honza
MozReview-Commit-ID: BK44BgMhqPN

--HG--
extra : transplant_source : %5C%A7T0%E7%A9%BC%06%B5%0Bo%17Y%C9WS8%BC%BBJ
2016-06-23 17:48:34 -04:00
Lin Clark
1e4fbb5c93 Bug 1264696 - Move string utility functions to rep-utils. r=Honza
--HG--
extra : transplant_source : %A4%BA%9C%B5%EA%0E%C03%F2%90s%E5%21%87%85%E2%5C%3Ct%3C
2016-06-23 17:14:41 -04:00
Gijs Kruitbosch
ad4c50d8a8 Bug 1208489 - use resizebefore attribute on devtools horizontal splitter to avoid resizing notificationboxes, r=bgrins
MozReview-Commit-ID: 9ijDB4fFhA3

--HG--
extra : rebase_source : 742b2dc71b56e32a23ca426713b3eb53a7d65f48
2016-07-07 16:38:27 +01:00
Jan Odvarko
86677d02a2 Bug 1266420 - Implement SidebarToggle component; r=bgrins 2016-07-04 16:47:48 +02:00
Ian Moody
c7bd381abc Bug 1268738 - Remove the background image from devtools breadcrumbs in the firebug theme. r=ntim
Prevents two breadcrumb arrows from appearing because the light-theme breadcrumb
is a background while the firebug-theme one is a CSS generated element

MozReview-Commit-ID: 20DEHid7lOP

--HG--
extra : transplant_source : kh%A0%F2%14%0B%FF%F3%BC%A6%28%1E%A39%9E%F2F%04%15%7B
2016-07-03 17:04:47 +01:00
Jan Odvarko
ad8bb89f66 Bug 1282463 - Reps: ensure that grip arrays work even when a provider is not provided; r=linclark 2016-07-01 12:48:30 +02:00
Lin Clark
d78524ccac Bug 1264688 - [rep tests] Add tests for number rep. r=Honza 2016-06-30 08:52:00 +02:00
Michael Ratcliffe
f71ab0d423 Bug 1244584 - Make GCLI tooltip hide after the first run experience r=jwalker 2016-07-01 12:30:00 +01:00
Jarda Snajdr
4e06c87a12 Bug 1231445 - Part 4: Tests for removing IndexedDB records in storage inspector r=mratcliffe 2016-07-04 04:10:00 +02:00
Jarda Snajdr
c8316a5361 Bug 1231445 - Part 3: Support for removing IndexedDB records in storage inspector r=mratcliffe 2016-07-04 04:10:00 +02:00
Jarda Snajdr
23366bd7b8 Bug 1231445 - Part 2: Change format of stores-cleared event data to support clearing any store r=mratcliffe 2016-07-04 04:09:00 +02:00
Jarda Snajdr
9d2f86c967 Bug 1231445 - Part 1: Support more key types in TableWidget r=mratcliffe 2016-07-04 04:09:00 +02:00
Ian Moody
199accd19e Bug 1205569 - Use margin-inline-start instead of margin-left for the webconsole filter icons so they look right on RTL locales. r=ntim
MozReview-Commit-ID: GTVUmgM45Yf

--HG--
extra : transplant_source : d%BA%FB%1B%FB%B06%19%96%F3%F0%88C%C3%D6%92%EF%DA4%DF
2016-07-02 22:58:18 +01:00
Patrick Brosset
3d0938464a Bug 1284221 - Move the font panel to the last position in the sidebar; r=jdescottes
MozReview-Commit-ID: Kh64bTWxQkA

--HG--
extra : rebase_source : fef638a9abb65e918ef593434a9224828c44d29e
2016-07-04 15:21:58 +02:00
Julian Descottes
4d95e26734 Bug 1283764 - fix display of noResults message in inspector computedview;r=gl
MozReview-Commit-ID: BRZZXCRHRyW

--HG--
extra : rebase_source : 1126efefe73800aea6602c9c3f0134bf1d3d1a58
2016-07-01 12:12:13 +02:00
Patrick Brosset
6c12aa9c1b Bug 1280121 - Re-enable the font panel by default
MozReview-Commit-ID: Lg7yvfkwqx5

--HG--
extra : rebase_source : bf206d7be2fc14f7e94bcb008ad060f3ea8b2908
2016-07-04 09:44:18 +02:00
Jarda Snajdr
1071446650 Bug 1283800 - Storage inspector throws unhandled exception trying to access localStorage on about:home r=mratcliffe
MozReview-Commit-ID: D5EVRMk8zEG
2016-07-01 06:26:00 +02:00
Phil Ringnalda
e38bf61245 Back out 7d431089a2d2 (bug 1283870) for failures in test_evaluation-result.html 2016-07-01 18:26:52 -07:00
James Long
2331b4c16c Bug 1273730 - remove pretty-print button if debugging workers because it doesn't work r=ejpbruel 2016-07-01 17:40:27 -04:00
Joseph Yeh
c6939fca31 Bug 1279651 - The show-all button overlaps on inspector-breadcrumbs-toolbar
MozReview-Commit-ID: 5QqTsbh50PT
2016-06-27 00:01:00 +02:00
Lin Clark
40a56b044e Bug 1283870 - New console frontend: Use reps to render responses from the backend. r=bgrins
MozReview-Commit-ID: HYRdgpKDXF
2016-07-01 11:21:08 -04:00
Peter Elmers
ef47656f06 Bug 1283465 - New console frontend: Display cached messages. r=linclark
MozReview-Commit-ID: ArhGOuUY8ea
2016-06-30 06:59:55 -07:00
Eddy Bruel
32f9a9263f Bug 1265727 - Decouple ProfilerFront from ProfilerActor;r=fitzgen 2016-07-01 15:27:41 +02:00
djmdev
e2dfb7824c Bug 1172412 - Moved the markers to the right of the checkbox, before the label. r=ntim
MozReview-Commit-ID: 3DYIoVO2an4
2016-06-30 21:50:27 +05:30
Jarda Snajdr
24366b36b0 Bug 1281732 - Part 8: Fix webconsole tests that inspect the stack frames r=bgrins 2016-06-27 04:54:00 +02:00
Jarda Snajdr
d66c01d247 Bug 1281732 - Part 7: Clean up and simplify markup of webconsole messages r=bgrins 2016-06-24 09:28:00 +02:00
Jarda Snajdr
d095253488 Bug 1281732 - Part 6: Use StackTrace React component in webconsole, cleanup message-location r=linclark 2016-06-29 04:06:00 +02:00
Jarda Snajdr
2eeeda64b7 Bug 1281732 - Part 5: Style cleanup for HTTP console log messages r=Honza 2016-06-24 09:15:00 +02:00
Jarda Snajdr
143d345a63 Bug 1281732 - Part 4: Add stack trace tab to HTTP console log message r=Honza 2016-06-28 09:29:00 +02:00
Jarda Snajdr
c259458149 Bug 1281732 - Part 3: Remove duplicate styles for stack frames in Performance tool r=bgrins 2016-06-24 09:13:00 +02:00