Nick Fitzgerald
5ef5ae5712
Backed out changeset 041986a971af because I forgot to add the "r=..." to the commit message
2013-07-31 10:12:57 -07:00
Mason Chang
206209d963
Bug 897744 - BreakpointStore should have a hasBreakpoint method
2013-07-30 19:34:10 -07:00
Alexandre Poirot
614890986a
Bug 898000 - Add getIconAsDataURL in webapps actor. r=paul.rouget
2013-07-31 09:16:45 -04:00
Nick Fitzgerald
6d3dd046dd
Bug 895543 - part 1: cache SourceClient instances; r=robcee
2013-07-30 20:36:12 -07:00
Jake Bailey
d1e8b62eac
Bug 887027 - Implement a tracing profiler actor; r=past,robcee
2013-07-30 19:09:29 -07:00
Ryan VanderMeulen
73205d6b00
Merge m-c to inbound on a CLOSED TREE.
2013-07-30 09:23:28 -04:00
Nick Fitzgerald
3c7aa00733
Bug 899215 - test_breakpointstore.js isn't testing anything; r=jimb
2013-07-29 15:52:35 -07:00
Christos Stathis
47b26b8992
Bug 686937 - Include JSTerm helpers in autocompletion suggestions; r=past
2013-07-27 11:44:00 +03:00
Trevor Saunders
64dbc43c4d
backout bug 886526 because it probably made us use a lot more memory to link on windows
2013-07-29 11:03:21 -04:00
Nick Fitzgerald
22b9456d34
Bug 892605 - part 2: add 'dbg blackbox' and 'dbg unblackbox' gcli commands; r=vporof
2013-07-27 10:50:57 -07:00
Nick Fitzgerald
f755d9cf2e
Bug 892605 - part 1: move the BlackBoxChange DOM event to blackboxchange thread client event; r=vporof
2013-07-27 10:49:45 -07:00
Nick Fitzgerald
1334032600
Bug 897777 - fix source mapped source resolution when there is no source root; r=jimb
2013-07-26 22:27:15 -07:00
Dave Camp
e29b4077e9
Bug 896274 - Allow an object's form to be an actor id. r=jimb
2013-07-21 11:02:30 -07:00
Dave Camp
4a76dd4526
Bug 896270 - Replace optional arguments with nullable types in protocol.js, part 2. r=jimb
2013-07-21 10:38:40 -07:00
Dave Camp
ac692a0e89
Bug 896270 - Replace optional arguments with nullable types in protocol.js, part 1. r=jimb
2013-07-21 10:15:59 -07:00
Nick Fitzgerald
e963ddf74d
Bug 860035 - script actors should handle breakpoints with columns; r=jimb
2013-07-24 17:46:49 -07:00
Ryan VanderMeulen
9e614c96db
Merge m-c to birch.
2013-07-24 18:22:06 -04:00
Alexandre Poirot
cfe4407c30
Bug 817580 - Pref off new webapps actor features until we secure remote debugger connection. r=paul.rouget
2013-07-24 11:29:04 -04:00
Alexandre Poirot
58a01f510d
Bug 817580 - Expose tab actors for apps in child processes. r=jimb
2013-07-24 11:28:32 -04:00
Jim Blandy
a89a889466
Bug 878958 - Support connections with prefixed actor names and prefix-based forwarding. r=dcamp
2013-07-24 11:27:26 -04:00
Dave Camp
a667e45abf
Bug 896103 - NodeListActor's items() response has unnecessary nesting. r=harth
...
--HG--
extra : rebase_source : b589da834403503959b357f91e989b77e47a2d32
2013-07-21 07:40:43 -07:00
Dave Camp
9d47c12e35
Bug 879523 - Remote the SelectorSearch. r=paul
2013-06-10 21:18:46 -07:00
Francesco Lodolo [:flod]
8293129ca1
Bug 871697 - GCLI: review strings and l10n comment, fix wrong strings disconnectDesc and disconnectManual; r=jwalker
2013-07-20 05:18:43 +01:00
Joe Walker
e7d00b9c69
Bug 767587 - GCLI should have a type for files; r=mratcliffe
2013-07-20 05:17:24 +01:00
Dave Camp
afcf077b1a
Bug 888528 - Add node deletion/insertion to the walker actor. r=jwalker
2013-06-17 06:52:53 -07:00
Panos Astithas
d3b827e6e4
Implement backend support for breaking on DOM events and retrieving all the event listeners on a page (bug 832982); r=rcampbell,smaug
2013-07-18 14:14:16 +03:00
Panos Astithas
fe13fab0d2
Don't pause twice on a breakpoint or debugger statement while stepping (bug 829028); r=rcampbell
2013-07-18 12:45:17 +03:00
Panos Astithas
6277ba7fbb
Clear any previous stepping hooks on a plain resumption (bug 832234); r=rcampbell
2013-07-18 12:45:17 +03:00
Bobby Holley
26926302d8
Bug 889911 - Switch xpcshell to SystemErrorReporter with a little bit of special magic. r=mrbkap
...
XPCShell currently overrides all the JSContexts whose creation it observes with
its own custom error reporter. This reporter does all sorts of funny things which
we try to clean up for the most part. But there are a few very intricate
considerations at play.
First, the old xpcshell error reporter does some mumbo jumbo with the
XPCCallContext stack to try to guess whether some other code might catch the
exception. This is total garbage on a number of fronts, particularly because
the XPCCallContext stack has no concept of saved frame chains, nested event
loops, sandbox boundaries, origin boundaries, or any of the myriad of
complicating factors that determine whether or not an exception will propagate.
So we get rid of it. But this causes some crazy debugger tests to fail, because
they rely on an exception from uriloader/exthandler/nsHandlerService.js getting
squelched, and can't handle anybody reporting errors to the console service at
the particular moment of contortionism when the exception is raised. So we need
to introduce an explicit mechanism to disable the error reporter here to keep
things running.
Second, we have to be very careful about tracking the return status of the
xpcshell binary. The old code would simply flag an error code if the error
handler was invoked, and we can mostly continue to do that. But there are some
complications. See the comments.
Finally, we don't anything analogous in XPCShellEnvironment, because I have
patches in bug 889714 to remove its state-dependence on the error reporter.
I'll switch it to SystemErrorReporter in that bug.
2013-07-16 20:38:44 -07:00
Ryan VanderMeulen
5333a265b8
Backed out 10 changesets (bug 889911, bug 889714) due to merge conflicts on a CLOSED TREE.
...
Backed out changeset 1a1a536121da (bug 889714)
Backed out changeset 2cd88ef9eea5 (bug 889714)
Backed out changeset 489723887eca (bug 889714)
Backed out changeset 2b38ce22cf97 (bug 889714)
Backed out changeset 87b0a59a5d51 (bug 889714)
Backed out changeset 13229bab2ba4 (bug 889714)
Backed out changeset 234bd6d1fbed (bug 889714)
Backed out changeset 4f5f62284917 (bug 889714)
Backed out changeset 18537c4436c7 (bug 889911)
Backed out changeset ca7060ab1588 (bug 889911)
2013-07-16 21:16:31 -04:00
Bobby Holley
b6f705b27a
Bug 889911 - Switch xpcshell to SystemErrorReporter with a little bit of special magic. r=mrbkap
...
XPCShell currently overrides all the JSContexts whose creation it observes with
its own custom error reporter. This reporter does all sorts of funny things which
we try to clean up for the most part. But there are a few very intricate
considerations at play.
First, the old xpcshell error reporter does some mumbo jumbo with the
XPCCallContext stack to try to guess whether some other code might catch the
exception. This is total garbage on a number of fronts, particularly because
the XPCCallContext stack has no concept of saved frame chains, nested event
loops, sandbox boundaries, origin boundaries, or any of the myriad of
complicating factors that determine whether or not an exception will propagate.
So we get rid of it. But this causes some crazy debugger tests to fail, because
they rely on an exception from uriloader/exthandler/nsHandlerService.js getting
squelched, and can't handle anybody reporting errors to the console service at
the particular moment of contortionism when the exception is raised. So we need
to introduce an explicit mechanism to disable the error reporter here to keep
things running.
Second, we have to be very careful about tracking the return status of the
xpcshell binary. The old code would simply flag an error code if the error
handler was invoked, and we can mostly continue to do that. But there are some
complications. See the comments.
Finally, we don't anything analogous in XPCShellEnvironment, because I have
patches in bug 889714 to remove its state-dependence on the error reporter.
I'll switch it to SystemErrorReporter in that bug.
2013-07-16 18:04:49 -07:00
Philipp Kewisch
2f34c2b9ad
Bug 872897 - TypeError: cyclic object value when opening style editor. r=harth
2013-06-10 23:02:24 +02:00
Dave Camp
cf841a15e1
Bug 896267 - Only create one walker actor per tab. r=harth
2013-07-19 11:21:40 -07:00
Brandon Benvie
346b1b7b37
bug 825039 - Make Scratchpad execute in context of current debugger; r=rcampbell,msucan,past
2013-07-23 09:58:27 -07:00
Gijs Kruitbosch
fc50f971ed
Bug 880752 - Console.jsm stdout/err output is joined with commas and nukes newlines; r=jwalker
2013-06-08 00:23:50 +02:00
Trevor Saunders
b2dc01f1a7
bug 886526 - remove IS_COMPONENT and MODULE_NAME makefile vars for things in libxul r=bsmedberg r=glandium
2013-08-08 20:12:37 -04:00
Mike Hommey
e9ee5bb8ee
Bug 892904 - Remove useless includes of config.mk. r=gps
2013-07-15 18:48:40 +09:00
Ryan VanderMeulen
21a858bf52
Merge m-c to inbound.
2013-07-12 15:51:48 -04:00
Panos Astithas
036c713213
Fix step-in in chrome debugging by loading the promise library in the debugger server's compartment (Bug 834756); r=dtownsend,vporof
2013-07-12 22:13:21 +03:00
Jim Blandy
bbb754faad
Bug 878958: Implement ChildDebuggerTransport, a debug protocol transport for communicating with content child processes via process message managers. r=dcamp
...
Transport classes (or prototypes?) should have a label that the requester telemetry stuff can cite, instead of that freaky check we have now.
2013-07-12 11:08:28 -07:00
Ryan VanderMeulen
248bfd7c21
Merge m-c to fx-team.
2013-07-11 21:58:48 -04:00
Ryan VanderMeulen
76fbd39046
Backed out changeset 817ceeb741b4 (bug 888528) for mochitest-other orange.
2013-07-11 15:21:41 -04:00
Alexandre Poirot
6277b1fd7a
Bug 889356 - Add test for app redirects
manifest feature. r=fabrice
2013-07-11 14:43:53 -04:00
Alexandre Poirot
7e0ad111aa
Bug 889356 - The redirects functionality appears to fail via pushing the app to the device. r=fabrice
2013-07-11 14:43:38 -04:00
Nick Fitzgerald
b9cb14f914
Bug 892100 - Script actor's source loading error reporting broken; r=past
2013-07-11 10:56:23 -07:00
Ed Morley
f505595e27
Merge mozilla-central and fx-team
2013-07-11 10:59:07 +01:00
Panos Astithas
eedfc10df3
Rename Promise to promise to avoid collisions with the forthcoming DOM Promise implementation (bug 885318); r=jwalker
2013-07-11 10:12:20 +03:00
Ryan VanderMeulen
ec6b3d53b5
Merge m-c to inbound.
2013-07-10 09:45:16 -04:00
Heather Arthur
a4ef8236b0
Bug 891171 - Remove actor id from StyleSheetActor event type name; r=dcamp
2013-07-09 17:34:14 -07:00
Jim Blandy
47c894604b
NO BUG: JS Debugger: Fix variable name in reportError. r=gijs
2013-07-10 16:02:28 -07:00
Mihai Sucan
de521374f1
Bug 812618 - Autocomplete at cursor location; r=robcee
2013-06-28 20:56:33 +03:00
Panos Astithas
d69a79ac07
Bug 882538 - Add reload() and navigateTo() methods to BrowserTabActor; r=rcampbell
2013-06-28 10:53:00 +03:00
Panos Astithas
6d54d55c04
Bug 870128 - Pause on exceptions doesn't work after reload; r=rcampbell
2013-07-09 10:57:13 +03:00
Trevor Saunders
ace23958ea
bug 886526 - disallow MODULE_NAME and IS_COMPONENT for makefiles in libxul r=bsmedberg
2013-06-25 11:15:21 -04:00
Nick Fitzgerald
f75c5b7822
Bug 889526 - Improve reportError so that it will add a stack trace if one is available; r=past
2013-07-03 14:10:52 -07:00
Dave Camp
9452f64b5a
Bug 888528 - Add node deletion/insertion to the walker actor. r=jwalker
...
--HG--
extra : rebase_source : 8d5b9991371a7dcdceff2cd302e7bc76c8f90ea0
2013-06-17 06:52:53 -07:00
Ryan VanderMeulen
0604484391
Merge fx-team to inbound.
2013-07-02 09:14:48 -04:00
Brandon Benvie
61cf375a12
Bug 888399 - Fix missing parenthesis in DebuggerClient.Argument.prototype.getArgument. r=dcamp
2013-06-28 11:25:57 -07:00
Mihai Sucan
26a020226a
Bug 886137 - Can't inspect objects in the webconsole, while debugging and inspecting; r=past
2013-06-28 19:16:18 +03:00
Anton Kovalyov
f181dfc10e
Bug 828038 - Change profile recording UI and behavior; r=dcamp
2013-06-27 17:31:52 -07:00
Alexandre Poirot
2d6a072fef
Bug 887809 - Webconsole actor doesn't unregister correctly consoleProgressListener on stopListeners. r=msucan
2013-07-01 09:47:09 -04:00
Mihnea Dobrescu-Balaur
74f5cef19c
Bug 889102 - Use a dynamic port in test_dbgglobal.js so that the xpcshell tests can be run concurrently. r=past
2013-07-09 09:09:16 -04:00
Victor Porof
e445d2b6ed
Bug 886067 - Netmonitor displays request sizes as "0 KB" after opening Console, r=msucan
2013-06-26 23:35:39 +03:00
Heather Arthur
0b1e305abe
Bug 731311 - Network monitor should allow to replay and edit requests; r=vporof
2013-06-26 12:09:59 +03:00
Victor Porof
033717a71a
Backed out changeset 5414c83bb989 for having the wrong patch author, r=me
2013-06-26 12:06:07 +03:00
Victor Porof
9f04904bde
Bug 731311 - Network monitor should allow to replay and edit requests; r=vporof
2013-06-26 09:00:49 +03:00
Mihai Sucan
41e61be582
Bug 885751 - dbg-server.jsm compartment is leaking 500,000-char JavaScript warning strings like a sieve; r=dcamp
2013-06-23 14:35:22 +03:00
Rob Campbell
902de0f7fb
Bug 692829 - Display cached messages from iframes; r=msucan
2013-06-14 11:19:26 -04:00
Nick Fitzgerald
76e78c45d3
Bug 885597 - absolute urls not working with sourcesContent and source maps in file:// urls; r=dcamp
2013-06-23 09:44:29 -07:00
Victor Porof
4ee9d109a8
Merge fx-team to m-c
2013-06-23 19:00:17 +03:00
Mihai Sucan
082e84f0d9
Bug 883649 - Console freezes when accessing a DeadObject's property; r=past
2013-06-21 20:40:00 +03:00
Dave Camp
ffe862febb
Bug 884431 - Consistently treat iframe documents as children in the inspector actor. r=paul
...
--HG--
extra : rebase_source : b364251c71393eed94a39ba5ace7225525bc5a00
2013-06-17 06:52:52 -07:00
Dave Camp
c3cb821d78
Bug 884396 - Add tests for NodeActor.setNodeValue. r=paul
...
--HG--
extra : rebase_source : 2e60220c3c3021862267e6300a5c54e7489aef57
2013-06-10 21:18:44 -07:00
Dave Camp
e925ee1a5c
Bug 884390 - Add attribute modification to the inspector actor. r=paul
...
--HG--
extra : rebase_source : ecd39da79ad5ad7d1bc365b135758970561341a0
2013-06-10 21:18:44 -07:00
Dave Camp
c330abb860
Bug 884388 - Add inner/outerHTML requests to the walker actor. r=paul
...
--HG--
extra : rebase_source : 7fe93afb46ce07bf17c9bf503056d345506f17b6
2013-06-10 21:18:44 -07:00
Dave Camp
35509cd8d1
Bug 883908 - Fix padding in Console.jsm's trace method. r=jwalker
...
--HG--
extra : rebase_source : b98c20106329084d5361dc336a58e98287f27445
2013-06-17 06:52:54 -07:00
Dave Camp
5c8b0c76e6
Bug 877316 - Add pseudo-class lock functionality to the inspector actor. r=harth
...
--HG--
extra : rebase_source : a24d4026ebc893d64f25ac65e535e5da23adfbc3
2013-06-10 21:18:41 -07:00
Dave Camp
a522abf020
Bug 883601 - Downgrade exceptions to warning when accessing rawNode on an inspector front. r=paul
...
--HG--
extra : rebase_source : bd170c4a9d32a6ffb4031e9c09658d2892dbb445
2013-06-10 21:18:43 -07:00
Dave Camp
ecac128177
Bug 883600 - Add an isLocal method to the walker. r=paul
...
--HG--
extra : rebase_source : 62589f32bbf32569b000f5b1557788402cf979e7
2013-06-10 21:18:43 -07:00
Victor Porof
7a12484988
Bug 883345 - Undefined values aren't properly displayed in the debugger's variables view, r=past
2013-06-21 17:33:57 +03:00
Ryan VanderMeulen
3b1055e7d1
Merge inbound and m-c.
2013-06-20 19:22:19 -04:00
Nick Fitzgerald
da2bce2e44
Bug 757408 - Opening debugger hangs completely on large scripts; r=past
2013-06-20 10:43:30 -07:00
Brian O'Keefe
ed17339221
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1 ); r=mshal
...
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
2013-06-17 15:21:01 -04:00
Alexandre Poirot
bf05e64bbe
Bug 732553 - NS_BASE_STREAM_CLOSED in dbg-transport.js. r=past
2013-06-19 20:57:35 -04:00
Alexandre Poirot
24602bf3cc
Bug 879228 - [browserconsole] Tune console.jsm to ease Addon SDK integration. r=msucan
2013-06-20 12:51:18 -04:00
Alexandre Poirot
4bdd89cf92
Bug 882760: Fix devtool's JSM global issue on b2g; r=jimb
2013-06-22 09:01:12 -04:00
Dave Camp
7f396d005c
Bug 883604 - Implement NodeFront.isDocumentElement. r=paul
2013-06-17 06:52:51 -07:00
Dave Camp
a455b09435
Bug 883603 - Don't reply to getWalker request until DOM content is loaded. r=paul
2013-06-17 06:52:51 -07:00
Dave Camp
94f17bb587
Bug 883602 - Import all parents when using frontForRawNode(). r=jwalker
2013-06-17 06:52:51 -07:00
Dave Camp
e1378f6462
Bug 883599 - Fix the inspector actor's nextSibling and previousSibling requests. r=paul
2013-06-10 21:18:18 -07:00
Dave Camp
3cc23fe0ec
Bug 881120 - Allow clients to specify nodes that shouldn't be released. r=jwalker
2013-06-11 20:27:23 -07:00
Dave Camp
ad99c0d2ec
Bug 878443 - Let the inspector actor expire actors for nodes that are no longer connected to the tree. r=jwalker
...
--HG--
extra : rebase_source : 0f6e871eebfd817b70d8229127b6cd285950ea86
2013-06-07 11:06:39 -07:00
Dave Camp
5a17f0a08d
Bug 878614 - Handle subdocument loads/unloads in the inspector actor. r=jwalker
...
--HG--
extra : rebase_source : 08d33498922f3a8b46faa5b1b11c6d8d25de9f17
2013-06-07 11:02:32 -07:00
Dave Camp
5170b54b2d
Bug 878442 - Add tree change mutations to the inspector actor. r=jwalker
...
--HG--
extra : rebase_source : 54401ddc820a0636f2980b8051207c4fa9968113
2013-06-06 16:22:01 -07:00
Dave Camp
78cfff5e31
Bug 878441 - Add simple mutation watching to the inspector actor. r=jwalker
...
--HG--
extra : rebase_source : 1f6a187ccaa8a8d0454da7271a5adbfd890c7c79
2013-06-06 16:09:16 -07:00
Dave Camp
ab66f0d9a5
Bug 878381 - Keep track of parents and children on the client side of the inspector. r=jwalker
...
--HG--
extra : rebase_source : c8ba58bf283e6c2c99c0c1ba8959ce97fc266d8a
2013-06-06 16:09:16 -07:00
Dave Camp
f55d4af0be
Bug 878379 - Change the walker's querySelector requests to provide any nodes needed to connect to the root node. r=jwalker
...
--HG--
extra : rebase_source : c234f32af28b5c137e679b1da1d9e5967fc08b3f
2013-06-06 16:09:16 -07:00
Dave Camp
8442e3dd6b
Bug 877300 - Add a basic DOM walker actor. r=jwalker
...
--HG--
extra : rebase_source : 984ca53aba9223f1d7c716a394cef2fc72bf8438
2013-06-06 16:09:16 -07:00
Dave Camp
584463cee7
Bug 866306 - Add a library to make devtools protocol interaction a bit easier - fix xpcshell tests, r=orange
2013-06-15 12:10:23 -07:00
Dave Camp
1f10f88d87
Bug 881101 - hooks.other is null after shutting down the debugger. r=past
2013-06-10 21:16:47 -07:00
Dave Camp
b4452c5821
Backout revision 5c76c23df424 for bad commit message.
2013-06-15 10:21:50 -07:00
Dave Camp
26d4bf3695
Bug 866306 - Add a library to make devtools protocol interaction a bit easier. r=jimb
...
--HG--
extra : rebase_source : 1b8d8b42ccea6bfea01297a16a561e55f192d554
2013-06-06 12:29:27 -07:00
Dave Camp
14b0f79bbe
Bug 877295 - Allow actors to be loaded as addon-sdk modules. r=past
...
--HG--
extra : rebase_source : 8f5e3247a5b98fb67bc3d659549b4040bb2d2f42
2013-06-10 21:16:47 -07:00
Dave Camp
23913ae271
Bug 877295 - Allow actors to be loaded as CommonJS modules. r=past
...
--HG--
extra : rebase_source : c9f1f7da216e006ab1983127f9aa61da25f7da92
2013-06-06 16:06:08 -07:00
Jim Blandy
f4a077b474
Bug 878958: Handle a greeting packet as if it were reply from the root actor. r=dcamp
2013-06-14 13:14:30 -07:00
Jim Blandy
16dcb1adbf
Bug 878958: Separate out a function for setting reply handlers. r=dcamp
2013-06-14 13:14:30 -07:00
Jim Blandy
9aec8ae7a0
Bug 878958: In DebuggerClient, substitute mainRoot for _connected. r=dcamp
2013-06-14 13:14:30 -07:00
Jim Blandy
be21d9b119
Bug 878958: Use a Map to map actor names to reply handlers, not an object. r=dcamp
2013-06-14 13:14:30 -07:00
Jim Blandy
47b154683d
Bug 878958: Use arrow functions in JS debugger client code. r=dcamp
2013-06-14 13:14:30 -07:00
Jim Blandy
7678420a86
Bug 878901: Create a separate client front object, RootClient, for communicating with root actors. r=dcamp
2013-06-14 13:14:29 -07:00
Nick Fitzgerald
9981b83524
Bug 882986 - A source map's sourcesContent doesn't work when the original file path is absolute; r=dcamp
2013-06-13 18:21:06 -07:00
Nick Desaulniers
659b126eb8
Bug 881499 - Modify WebApps actor to receive receipts. r=fabrice
2013-06-12 20:47:14 -04:00
Panos Astithas
e38ca573a5
Bug 773590 - Display the return value when stepping out of a function; r=vporof
2013-06-12 12:56:15 +03:00
Philipp Kewisch
b66083d4d1
Fix bug 881671 - Comment for appShellDOMWindowType is wrong. r=jimb
2013-06-11 14:53:48 +02:00
Philipp Kewisch
5ad5769d70
Fix bug 881468 - Event listener not properly removed in BrowserTabList. r=jimb
...
Fix bug 881468 - Event listener not properly removed in BrowserTabList. r=jimb
2013-06-11 13:04:29 +02:00
Nick Fitzgerald
45f092580b
Bug 877682 - blackbox sources in the debugger server via the rdp; r=dcamp,past
2013-06-11 17:23:00 +03:00
Mihai Sucan
f8f7fa75e5
Bug 861338 - [browserconsole] Cache Console.jsm API calls with ConsoleAPIStorage.jsm; r=jwalker
2013-06-07 20:13:48 +03:00
Panos Astithas
a0fef75b61
Don't take the slow async path when source maps are not enabled or present (bug 873224); r=rcampbell f=nfitzgerald
2013-06-11 10:58:57 +03:00
Jonathan Griffin
94f463c1c4
Bug 797529 - Make DevToolsUtils.js compatible with B2G compartment sharing, r=past
2013-06-06 20:00:11 -07:00
Nick Fitzgerald
a26de060a2
Bug 870361 - Change the symbol for source map pragmas from @ to #. r=jorendorff
2013-06-10 08:36:23 -04:00
Mihai Sucan
e0c048cda0
Bug 877773 - If Browser console is staying opened, Browser UI freezes for a while when open youtube page; r=robcee
2013-06-04 18:47:39 +03:00
Mihai Sucan
6d970bed58
Bug 877953 - Fix for intermittent test_cached_messages.html | number of cached page errors - got n, expected 2; r=me
2013-06-04 22:12:11 +03:00
Jim Blandy
2065417c6e
No bug: comment fixes for JS debugger sourceMap support. f=fitzgen DONTBUILD
2013-06-05 18:06:43 -07:00
Ryan VanderMeulen
e16e5832c0
Merge inbound to m-c.
2013-06-05 16:29:54 -04:00
Nick Fitzgerald
376f2cb3bf
Bug 879246 - Fix intermittent failure in test_sourcemaps-02.js. r=past
2013-06-05 12:13:31 -04:00
Dave Camp
a450ab9571
Bug 878472 - Let local debugger clients find the DebuggerServerConnection. r=past
2013-06-03 09:05:29 -07:00
Jim Blandy
86d445636d
Bug 878319: Move makeInfallible into its own JSM. r=dcamp
2013-06-05 09:30:54 -07:00
Jim Blandy
55bf378bcb
Bug 870081: Share a common RootActor implementation amongst browser, Fennec, B2G, and xpcshell tests. r=past,mfinkle,fabrice
2013-06-02 10:19:41 +03:00
Panos Astithas
8823835462
Backout b0e571a21e22 for wrong bug number
2013-06-02 10:18:15 +03:00
Jim Blandy
28b50b5dea
Bug 871081: Share a common RootActor implementation amongst browser, Fennec, B2G, and xpcshell tests. r=past,mfinkle,fabrice
...
--HG--
rename : browser/devtools/debugger/test/browser_dbg_listtabs.js => browser/devtools/debugger/test/browser_dbg_listtabs-01.js
2013-05-17 15:17:00 +03:00
Dave Camp
bc58c262e9
Bug 878292 - Profiler actor leaves the profiler running in some cases. r=anton, r=robcee
2013-06-01 11:53:54 -07:00
Dave Camp
5625626545
Bug 877719 - DebuggerServer.destroy should always work. r=past
2013-05-30 09:42:00 -07:00
Nick Fitzgerald
26c7d35b52
Bug 760370 - Visually distinguish non-extensible objects; r=vporof
2013-05-29 19:47:00 +03:00
Jim Blandy
f6bf8f8722
Use DebuggerServer.addGlobalActor to register ChromeDebuggerActor, instead of writing out code with the same effect (bug 863936). r=past,mfinkle,fabrice
2013-04-19 17:33:00 +03:00
Dave Camp
6d670aaa3f
Bug 867208 - Console.jsm is truncating messages. r=jwalker
2013-05-31 16:57:42 -07:00
Dave Camp
1f388e88f5
Bug 877274 - Add console.exception to Console.jsm. r=msucan
2013-05-31 16:57:40 -07:00
Ryan VanderMeulen
b25ced8a88
Merge m-c to fx-team.
2013-05-31 16:14:04 -04:00
Dave Camp
11bcb8c33a
Backout changeset 333845b6e000 (bug 877719) for mochitest-browser bustage.
2013-05-31 12:56:05 -07:00
Dave Camp
d27f7147fc
Bug 877298 - Move devtools globals to loader creation. r=jwalker
2013-05-31 11:06:09 -07:00
Dave Camp
991f954452
Bug 877719 - DebuggerServer.destroy should always work. r=past, f=jgriffin
2013-05-31 11:06:08 -07:00
Dave Camp
1020ce3380
Bug 867109 - tools reload not working correctly on windows. r=jwalker
2013-05-29 10:48:06 -07:00
Dave Camp
2a8801838a
Bug 875437 - Close the debugger client in test_add_actors.js. r=past
2013-05-29 10:47:38 -07:00
Dave Camp
6c66472379
Bug 876793 - gDevTools._addToolToWindows doesn't work with existing windows. r=jwalker
2013-05-29 10:47:38 -07:00
Dave Camp
b0a19dd209
Bug 875432 - Loader.jsm references gDevTools. r=jwalker
2013-05-29 10:47:38 -07:00
Anton Kovalyov
27a9375ceb
Bug 817836 - Support for console.profile and console.profileEnd; r=dcamp
2013-05-14 15:25:28 -07:00
Anton Kovalyov
d7a6ac8ae0
Backed out changeset 4f2586fe4489
2013-05-28 12:51:42 -07:00
Anton Kovalyov
1bc1c91f37
Bug 817836 - Support for console.profile and console.profileEnd; r=dcamp
2013-05-14 15:25:28 -07:00
Mihai Sucan
41f0938b15
Bug 859756 - [browserconsole] Show nsIConsoleMessages in the Browser Console; r=robcee
2013-05-28 18:24:31 +03:00
Mike Shal
6f32ddf61c
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
...
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
2013-04-23 17:54:15 -04:00
Tim Taubert
528e894d58
merge m-c to fx-team
2013-05-26 15:22:27 +02:00
Mihai Sucan
69eceeab3c
Bug 874061 - Figure out private browsing and the browser console; r=robcee f=ehsan
2013-05-25 12:25:36 +03:00
Joe Walker
aed5141a94
Bug 767589 - GCLI should expose addType and removeType to the outside; r=mratcliffe
2013-05-25 10:41:42 +01:00
Joe Walker
93920d3fe2
Bug 874821 - Enable better remote gcli testing; r=mratcliffe
2013-05-25 09:51:31 +01:00
Joe Walker
8211ba5d95
Bug 754315 - Refactor to enable exec commands; r=mratcliffe
2013-05-25 09:51:31 +01:00
Joe Walker
a17d39aa1b
Bug 767589 - GCLI should expose addType and removeType to the outside; r=mratcliffe
2013-05-25 09:51:30 +01:00
Victor Porof
1bcfae93c8
Bug 859046 - Implement filtering out certain types of requests, r=rcampbell
...
* * *
Bug 873761 - Several "XUL box for hbox element contained an inline #text child, forcing all its children to be wrapped in a block." warnings for netmonitor.xul, r=rcampbell
2013-05-24 20:53:10 +03:00
Victor Porof
7a2fdc1a36
Bug 866623 - Firefox spoils cyrillic text in the Network Monitor response tab - fix convertToUnicode misbehaving when a request has no attached contentCharset, r=rcampbell
...
--HG--
rename : browser/devtools/netmonitor/test/browser_net_cyrillic.js => browser/devtools/netmonitor/test/browser_net_cyrillic-01.js
2013-05-24 20:10:07 +03:00
Eddy Bruel
522516b0d6
Merge for bug 637572
2013-05-24 17:05:46 -07:00
Jim Blandy
d8e43fcdc1
Bug 862490: Clarify sharing of _createExtraActors and _appendExtraActors between BrowserRootActor and BrowserTabActor. r=past
2013-05-24 10:13:42 -07:00
Bobby Holley
ba05c93769
Bug 868130 - Include nsCxPusher.h everywhere we need it, and stop including it from nsContentUtils.h. r=gabor
2013-05-22 10:05:26 -06:00
Dave Camp
16413f1fd8
Bug 872091 - Rename files in the debugger server (another bustage fix). r=bustage
2013-05-21 20:44:39 -07:00
Dave Camp
84e0f5bda0
Bug 872091 - Rename files in the debugger server (bustage fix). r=bustage
2013-05-21 18:47:47 -07:00
Dave Camp
f6c774eb5e
Bug 872091 - Rename files in the debugger server. r=past,r=jimb
...
--HG--
rename : toolkit/devtools/debugger/Makefile.in => toolkit/devtools/client/Makefile.in
rename : toolkit/devtools/debugger/dbg-client.jsm => toolkit/devtools/client/dbg-client.jsm
rename : toolkit/devtools/debugger/moz.build => toolkit/devtools/client/moz.build
rename : toolkit/devtools/debugger/Makefile.in => toolkit/devtools/server/Makefile.in
rename : toolkit/devtools/gcli/dbg-gcli-actors.js => toolkit/devtools/server/actors/gcli.js
rename : toolkit/devtools/debugger/server/dbg-profiler-actors.js => toolkit/devtools/server/actors/profiler.js
rename : toolkit/devtools/debugger/server/dbg-script-actors.js => toolkit/devtools/server/actors/script.js
rename : toolkit/devtools/styleeditor/dbg-styleeditor-actors.js => toolkit/devtools/server/actors/styleeditor.js
rename : toolkit/devtools/debugger/server/dbg-browser-actors.js => toolkit/devtools/server/actors/webbrowser.js
rename : toolkit/devtools/webconsole/dbg-webconsole-actors.js => toolkit/devtools/server/actors/webconsole.js
rename : toolkit/devtools/debugger/server/dbg-server.jsm => toolkit/devtools/server/dbg-server.jsm
rename : toolkit/devtools/debugger/server/dbg-server.js => toolkit/devtools/server/main.js
rename : toolkit/devtools/debugger/moz.build => toolkit/devtools/server/moz.build
rename : toolkit/devtools/debugger/nsIJSInspector.idl => toolkit/devtools/server/nsIJSInspector.idl
rename : toolkit/devtools/debugger/nsJSInspector.cpp => toolkit/devtools/server/nsJSInspector.cpp
rename : toolkit/devtools/debugger/nsJSInspector.h => toolkit/devtools/server/nsJSInspector.h
rename : toolkit/devtools/debugger/tests/mochitest/Makefile.in => toolkit/devtools/server/tests/mochitest/Makefile.in
rename : toolkit/devtools/debugger/tests/mochitest/moz.build => toolkit/devtools/server/tests/mochitest/moz.build
rename : toolkit/devtools/debugger/tests/mochitest/nonchrome_unsafeDereference.html => toolkit/devtools/server/tests/mochitest/nonchrome_unsafeDereference.html
rename : toolkit/devtools/debugger/tests/mochitest/test_unsafeDereference.html => toolkit/devtools/server/tests/mochitest/test_unsafeDereference.html
rename : toolkit/devtools/debugger/tests/moz.build => toolkit/devtools/server/tests/moz.build
rename : toolkit/devtools/debugger/tests/unit/head_dbg.js => toolkit/devtools/server/tests/unit/head_dbg.js
rename : toolkit/devtools/debugger/tests/unit/post_init_global_actors.js => toolkit/devtools/server/tests/unit/post_init_global_actors.js
rename : toolkit/devtools/debugger/tests/unit/post_init_tab_actors.js => toolkit/devtools/server/tests/unit/post_init_tab_actors.js
rename : toolkit/devtools/debugger/tests/unit/pre_init_global_actors.js => toolkit/devtools/server/tests/unit/pre_init_global_actors.js
rename : toolkit/devtools/debugger/tests/unit/pre_init_tab_actors.js => toolkit/devtools/server/tests/unit/pre_init_tab_actors.js
rename : toolkit/devtools/debugger/tests/unit/source-map-data/sourcemapped.coffee => toolkit/devtools/server/tests/unit/source-map-data/sourcemapped.coffee
rename : toolkit/devtools/debugger/tests/unit/source-map-data/sourcemapped.map => toolkit/devtools/server/tests/unit/source-map-data/sourcemapped.map
rename : toolkit/devtools/debugger/tests/unit/sourcemapped.js => toolkit/devtools/server/tests/unit/sourcemapped.js
rename : toolkit/devtools/debugger/tests/unit/test_add_actors.js => toolkit/devtools/server/tests/unit/test_add_actors.js
rename : toolkit/devtools/debugger/tests/unit/test_attach.js => toolkit/devtools/server/tests/unit/test_attach.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-01.js => toolkit/devtools/server/tests/unit/test_breakpoint-01.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-02.js => toolkit/devtools/server/tests/unit/test_breakpoint-02.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-03.js => toolkit/devtools/server/tests/unit/test_breakpoint-03.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-04.js => toolkit/devtools/server/tests/unit/test_breakpoint-04.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-05.js => toolkit/devtools/server/tests/unit/test_breakpoint-05.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-06.js => toolkit/devtools/server/tests/unit/test_breakpoint-06.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-07.js => toolkit/devtools/server/tests/unit/test_breakpoint-07.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-08.js => toolkit/devtools/server/tests/unit/test_breakpoint-08.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-09.js => toolkit/devtools/server/tests/unit/test_breakpoint-09.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-10.js => toolkit/devtools/server/tests/unit/test_breakpoint-10.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-11.js => toolkit/devtools/server/tests/unit/test_breakpoint-11.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpoint-12.js => toolkit/devtools/server/tests/unit/test_breakpoint-12.js
rename : toolkit/devtools/debugger/tests/unit/test_breakpointstore.js => toolkit/devtools/server/tests/unit/test_breakpointstore.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgactor.js => toolkit/devtools/server/tests/unit/test_dbgactor.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgclient_debuggerstatement.js => toolkit/devtools/server/tests/unit/test_dbgclient_debuggerstatement.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgglobal.js => toolkit/devtools/server/tests/unit/test_dbgglobal.js
rename : toolkit/devtools/debugger/tests/unit/test_dbgsocket.js => toolkit/devtools/server/tests/unit/test_dbgsocket.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-01.js => toolkit/devtools/server/tests/unit/test_eval-01.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-02.js => toolkit/devtools/server/tests/unit/test_eval-02.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-03.js => toolkit/devtools/server/tests/unit/test_eval-03.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-04.js => toolkit/devtools/server/tests/unit/test_eval-04.js
rename : toolkit/devtools/debugger/tests/unit/test_eval-05.js => toolkit/devtools/server/tests/unit/test_eval-05.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-01.js => toolkit/devtools/server/tests/unit/test_frameactor-01.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-02.js => toolkit/devtools/server/tests/unit/test_frameactor-02.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-03.js => toolkit/devtools/server/tests/unit/test_frameactor-03.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-04.js => toolkit/devtools/server/tests/unit/test_frameactor-04.js
rename : toolkit/devtools/debugger/tests/unit/test_frameactor-05.js => toolkit/devtools/server/tests/unit/test_frameactor-05.js
rename : toolkit/devtools/debugger/tests/unit/test_framearguments-01.js => toolkit/devtools/server/tests/unit/test_framearguments-01.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-01.js => toolkit/devtools/server/tests/unit/test_framebindings-01.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-02.js => toolkit/devtools/server/tests/unit/test_framebindings-02.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-03.js => toolkit/devtools/server/tests/unit/test_framebindings-03.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-04.js => toolkit/devtools/server/tests/unit/test_framebindings-04.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-05.js => toolkit/devtools/server/tests/unit/test_framebindings-05.js
rename : toolkit/devtools/debugger/tests/unit/test_framebindings-06.js => toolkit/devtools/server/tests/unit/test_framebindings-06.js
rename : toolkit/devtools/debugger/tests/unit/test_frameclient-01.js => toolkit/devtools/server/tests/unit/test_frameclient-01.js
rename : toolkit/devtools/debugger/tests/unit/test_frameclient-02.js => toolkit/devtools/server/tests/unit/test_frameclient-02.js
rename : toolkit/devtools/debugger/tests/unit/test_functiongrips-01.js => toolkit/devtools/server/tests/unit/test_functiongrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_getyoungestframe.js => toolkit/devtools/server/tests/unit/test_getyoungestframe.js
rename : toolkit/devtools/debugger/tests/unit/test_interrupt.js => toolkit/devtools/server/tests/unit/test_interrupt.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-01.js => toolkit/devtools/server/tests/unit/test_listsources-01.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-02.js => toolkit/devtools/server/tests/unit/test_listsources-02.js
rename : toolkit/devtools/debugger/tests/unit/test_listsources-03.js => toolkit/devtools/server/tests/unit/test_listsources-03.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringactor.js => toolkit/devtools/server/tests/unit/test_longstringactor.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringgrips-01.js => toolkit/devtools/server/tests/unit/test_longstringgrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_longstringgrips-02.js => toolkit/devtools/server/tests/unit/test_longstringgrips-02.js
rename : toolkit/devtools/debugger/tests/unit/test_nativewrappers.js => toolkit/devtools/server/tests/unit/test_nativewrappers.js
rename : toolkit/devtools/debugger/tests/unit/test_new_source-01.js => toolkit/devtools/server/tests/unit/test_new_source-01.js
rename : toolkit/devtools/debugger/tests/unit/test_nsjsinspector.js => toolkit/devtools/server/tests/unit/test_nsjsinspector.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-01.js => toolkit/devtools/server/tests/unit/test_objectgrips-01.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-02.js => toolkit/devtools/server/tests/unit/test_objectgrips-02.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-03.js => toolkit/devtools/server/tests/unit/test_objectgrips-03.js
rename : toolkit/devtools/debugger/tests/unit/test_objectgrips-04.js => toolkit/devtools/server/tests/unit/test_objectgrips-04.js
rename : toolkit/devtools/debugger/tests/unit/test_pause_exceptions-01.js => toolkit/devtools/server/tests/unit/test_pause_exceptions-01.js
rename : toolkit/devtools/debugger/tests/unit/test_pause_exceptions-02.js => toolkit/devtools/server/tests/unit/test_pause_exceptions-02.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-01.js => toolkit/devtools/server/tests/unit/test_pauselifetime-01.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-02.js => toolkit/devtools/server/tests/unit/test_pauselifetime-02.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-03.js => toolkit/devtools/server/tests/unit/test_pauselifetime-03.js
rename : toolkit/devtools/debugger/tests/unit/test_pauselifetime-04.js => toolkit/devtools/server/tests/unit/test_pauselifetime-04.js
rename : toolkit/devtools/debugger/tests/unit/test_profiler_actor.js => toolkit/devtools/server/tests/unit/test_profiler_actor.js
rename : toolkit/devtools/debugger/tests/unit/test_source-01.js => toolkit/devtools/server/tests/unit/test_source-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-01.js => toolkit/devtools/server/tests/unit/test_sourcemaps-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-02.js => toolkit/devtools/server/tests/unit/test_sourcemaps-02.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-03.js => toolkit/devtools/server/tests/unit/test_sourcemaps-03.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-04.js => toolkit/devtools/server/tests/unit/test_sourcemaps-04.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-05.js => toolkit/devtools/server/tests/unit/test_sourcemaps-05.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-06.js => toolkit/devtools/server/tests/unit/test_sourcemaps-06.js
rename : toolkit/devtools/debugger/tests/unit/test_sourcemaps-07.js => toolkit/devtools/server/tests/unit/test_sourcemaps-07.js
rename : toolkit/devtools/debugger/tests/unit/test_sources_backwards_compat-01.js => toolkit/devtools/server/tests/unit/test_sources_backwards_compat-01.js
rename : toolkit/devtools/debugger/tests/unit/test_sources_backwards_compat-02.js => toolkit/devtools/server/tests/unit/test_sources_backwards_compat-02.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-01.js => toolkit/devtools/server/tests/unit/test_stepping-01.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-02.js => toolkit/devtools/server/tests/unit/test_stepping-02.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-03.js => toolkit/devtools/server/tests/unit/test_stepping-03.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-04.js => toolkit/devtools/server/tests/unit/test_stepping-04.js
rename : toolkit/devtools/debugger/tests/unit/test_stepping-05.js => toolkit/devtools/server/tests/unit/test_stepping-05.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-01.js => toolkit/devtools/server/tests/unit/test_threadlifetime-01.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-02.js => toolkit/devtools/server/tests/unit/test_threadlifetime-02.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-03.js => toolkit/devtools/server/tests/unit/test_threadlifetime-03.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-04.js => toolkit/devtools/server/tests/unit/test_threadlifetime-04.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-05.js => toolkit/devtools/server/tests/unit/test_threadlifetime-05.js
rename : toolkit/devtools/debugger/tests/unit/test_threadlifetime-06.js => toolkit/devtools/server/tests/unit/test_threadlifetime-06.js
rename : toolkit/devtools/debugger/tests/unit/test_unsafeDereference.js => toolkit/devtools/server/tests/unit/test_unsafeDereference.js
rename : toolkit/devtools/debugger/tests/unit/testactors.js => toolkit/devtools/server/tests/unit/testactors.js
rename : toolkit/devtools/debugger/tests/unit/testcompatactors.js => toolkit/devtools/server/tests/unit/testcompatactors.js
rename : toolkit/devtools/debugger/tests/unit/xpcshell.ini => toolkit/devtools/server/tests/unit/xpcshell.ini
rename : toolkit/devtools/debugger/dbg-transport.js => toolkit/devtools/server/transport.js
2013-05-21 16:39:13 -07:00
Dave Camp
53adb1e5ca
Bug 871784 - b2g should specify its debug actors explicitly rather than using addBrowserActors. r=past,r=jimb,r=fabrice
2013-05-21 16:36:43 -07:00
Joe Walker
3095239dd6
Bug 832717 - Help synopsis for GCLI commands should include the -- prefix needed to pass parameters; r=mratcliffe
2013-05-21 10:18:56 +01:00
Quentin Pradet
467af11b78
Bug 773271 - GCLI needs a date type; r=jwalker,harth
2013-05-21 10:18:55 +01:00
Joe Walker
ba712dc342
Bug 834230 - break del command suffers from an off by 1 error; r=vporof
2013-05-21 10:18:55 +01:00
Joe Walker
ded82847c6
Bug 866680 - gcli string params should allow empty values; r=mgoodwin,harth
2013-05-21 10:18:54 +01:00
Joe Walker
0f5d8cc2a1
Bug 786661 - GCLI should not auto-unescape command line escapes; r=optimizer,harth
2013-05-21 10:18:54 +01:00
Mihai Sucan
c71010cc83
Bug 863818 - console.log messages don't appear in the Web Console when connecting to 'shell.xul' via Simulator; r=past
2013-05-16 22:54:40 +03:00
Nick Fitzgerald
f3952f8e0a
Bug 865252 - Don't heavily prefer cache when loading source mapped sources; r=rcampbell
2013-05-13 14:53:00 +03:00
Nick Fitzgerald
cbadb04b92
Bug 852792 - load sources from the 'sourcesContent' field in a source map, if available; r=rcampbell
2013-05-13 14:16:00 +03:00
Gregory Szorc
c1b865f669
Bug 873629 - Remove 129 empty Makefile.in files; r=ted
2013-05-17 16:20:11 -07:00
Ryan VanderMeulen
1732f4e103
Backed out changesets 073791f33ab7 and 7ac5779a426c (bug 859756) for causing intermittent Windows build failures.
...
CLOSED TREE
2013-05-17 17:30:20 -04:00
Mihai Sucan
5f4fe12638
Bug 859756 - [browserconsole] Show nsIConsoleMessages in the Browser Console; r=robcee
2013-05-17 13:36:56 +03:00
Mihai Sucan
1c4ff5e9b2
Bug 871156 - Allow Ctrl+W to close the tab when the Web Console is focused; r=robcee
2013-05-16 15:35:53 +03:00
Ryan VanderMeulen
0789066b2f
Merge m-c to fx-team.
2013-05-16 16:19:25 -04:00
Panos Astithas
6b052b1e91
Bug 871510 - Some event handlers appear as undefined, hiding the appropriate null values in the prototype; r=msucan
2013-05-16 18:42:15 +03:00
Victor Porof
36e4594c52
Merge m-c to fx-team
2013-05-16 10:32:06 +03:00
Panos Astithas
39041b6f58
Fix another typo in Loader.jsm (bug 867485); r=dcamp
2013-05-15 17:22:01 +03:00
Panos Astithas
a318e18c6a
Fix a few typos in Loader.jsm (bug 867485); r=jwalker
2013-05-14 12:48:18 +03:00
Dave Camp
c6104f852b
Bug 867485: Move the devtools loader into toolkit/ r=jwalker
2013-05-01 09:27:24 -07:00
Joe Walker
463c85bd35
Backed out changeset 6ebf2274acf5 (Bug 852792) for xpcshell bustage
2013-05-11 12:13:09 +01:00
Joe Walker
21be16980e
Backed out changeset 752dca088d71 (Bug 865252) for xpcshell bustage
2013-05-11 12:08:58 +01:00
Nick Fitzgerald
3d14363f5c
Bug 865252 - Don't heavily prefer cache when loading source mapped sources; r=robcee
2013-05-11 10:22:38 +01:00
Nick Fitzgerald
4754d7fefd
Bug 852792 - load sources from the sourcesContent field in a source map, if available; r=robcee
2013-05-11 10:22:36 +01:00
Mihai Sucan
dd218ccf61
Bug 870220 - Web Console property inspector shows duplicate entries for navigator.plugins; r=robcee,vporof
2013-05-11 12:05:21 +03:00
Joe Walker
cf09fcba29
Bug 839862 - The developer toolbar / GCLI should be able to execute commands remotely; r=dcamp
...
--HG--
rename : browser/devtools/shared/Templater.jsm => toolkit/devtools/gcli/Templater.jsm
rename : browser/devtools/commandline/gcli.jsm => toolkit/devtools/gcli/gcli.jsm
2013-05-09 15:15:22 +01:00
Mihai Sucan
99a3fbf2df
Bug 869003 - Cannot inspect objects from cross-domain iframes; r=robcee
2013-05-09 18:20:51 +03:00
Joe Walker
67bb224aa6
Backed out changeset d6249744132e (bug 839862) because xpcshell bustage
2013-05-09 17:46:27 +01:00
Joe Walker
bb0acd34f2
Bug 839862 - The developer toolbar / GCLI should be able to execute commands remotely; r=dcamp
2013-05-09 15:15:22 +01:00
Joe Walker
8401d43c19
Bug 849171 - Console.jsm output of errors could be better; r=msucan
2013-05-09 15:15:22 +01:00
Mihai Sucan
70a95751c9
Bug 869981 - Bring back inspect() jsterm helper function; r=me a=robcee
2013-05-09 13:36:56 +03:00
Ryan VanderMeulen
a25e7a8ad1
Merge m-c to fx-team.
2013-05-09 00:19:26 -04:00
Phil Ringnalda
50de41e318
Merge m-c to fx-team
2013-05-07 19:55:28 -07:00
Heather Arthur
04cf9f778a
Bug 868321 - Sites with no stylesheets just show loading indicator forever; r=dcamp
2013-05-07 15:49:52 -07:00
Brandon Benvie
3bd13361af
bug 843094 - Remove the PropertyPanel; r=msucan
2013-05-03 11:39:00 -04:00
David Creswick
18cd42578c
Bug 740541 - Style sheets in iframes are not listed in the style editor; r=harth
2013-05-06 20:31:46 -07:00
Panos Astithas
65928b8591
Bug 832231 - After a reload, breakpoints require multiple resumes to allow execution to continue; r=vporof
2013-05-01 18:29:33 +03:00
Phil Ringnalda
1e4ab6c25d
Merge m-c to fx-team
2013-05-05 12:28:41 -07:00