Commit Graph

562 Commits

Author SHA1 Message Date
Mihai Sucan
0dc274e5cc Bug 688981 - Place the web console in its own iframe; r=rcampbell,dao 2012-07-26 18:06:04 +03:00
Mihai Sucan
65cb2154e1 Bug 676722 - The output of console.log(object) isn't expandable/inspectable in the Web Console; r=rcampbell 2012-08-02 22:09:46 +03:00
Rob Campbell
ae1033414b Bug 778732 - Change JSTerm's $ helper function from getElementById to querySelector; r=msucan 2012-08-02 12:53:00 +03:00
Thaddee Tyl
598bb644ce Bug 775812 - Web Console autocomplete should include full scope; r=msucan 2012-07-25 20:21:03 +03:00
Benjamin Peterson
20adba28a8 Bug 761723 - Save script sources to implement Function.prototype.toString. r=jorendorff,njn,jimb,jst,Ms2ger 2012-07-20 20:17:38 +02:00
Mihai Sucan
ef1a2fca25 Bug 773466 - Console will stop displaying output; r=rcampbell 2012-07-17 14:03:14 +03:00
Tanvi Vyas
b77ae66a02 Bug 737873 - Implement mixed content highlighting in the web console; r=msucan,gavin.sharp 2012-07-10 20:37:26 +03:00
Mihai Sucan
016f7e78aa Bug 772506 - Make sure jsterm eval results are correctly formatted as strings; r=rcampbell 2012-07-10 19:29:58 +03:00
Nathan Froyd
f7054dc678 Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
2012-07-03 16:49:02 -04:00
Ed Morley
de1c31601c Merge mozilla-central to fx-team to pick up the #1 top orange fix 2012-06-28 15:10:25 +01:00
Sankha Narayan Guria
d3c1ef3614 Bug 764545 - WebConsole default position should be "below"; r=msucan 2012-06-28 14:03:50 +03:00
Mihai Sucan
f5a08cb926 Bug 768019 - Cached CSS warnings are displayed as JavaScript warnings on Web Console open; r=paul 2012-06-25 20:18:13 +03:00
Ehsan Akhgari
f4bd388765 Bug 722872 - Part 1: Add nsITransferable::Init(nsILoadContext*), enforce that it's called in debug builds, and add nsIDOMDocument* arguments to nsIClipboardHelper methods; r=roc
This patch does the following:

* It adds nsITransferable::Init(nsILoadContext*).  The load context
  might be null, which means that the transferable is non-private, but
  if it's non-null, we extract the boolean value for the privacy mode
  and store it in the transferable.
* It adds checks in debug builds to make sure that Init is always
  called, in form of fatal assertions.
* It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which
  represent the document that the string is coming from.
  nsIClipboardHelper implementation internally gets the nsILoadContext
  from that and passes it on to the transferable upon creation.  The
  reason that I did this was that nsIClipboardHelper is supposed to be a
  high-level helper, and in most of its call sites, we have easy access
  to a document object.
* It modifies all of the call sites of the above interfaces according to
  this change.
* It adds a GetLoadContext helper to nsIDocument to help with changing
  the call sites.
2012-04-16 22:14:01 -04:00
Paul Rouget
67b09ba8a1 Bug 764625 - Web Console and Debugger stay checked in Web Developer menu after closing them with the close X button. r=msucan,past 2012-06-19 18:56:31 +02:00
Mihai Sucan
c9b1369a01 Bug 761257 - Further improve Web Console output performance; r=dcamp f=bz 2012-06-12 14:25:07 +03:00
Mihai Sucan
7951cbd41e Bug 760837 - Intermittent browser_webconsole_bug_595934_message_categories.js | expectUncaughtException was called but no uncaught exception was detected; r=past 2012-06-03 12:07:15 +03:00
Mihai Sucan
097f15c23b Bug 760999 - Intermittent browser_webconsole_netlogging.js | TypeError: content.wrappedJSObject.testXhrGet is not a function; r=rcampbell 2012-06-04 19:45:10 +03:00
Mihai Sucan
18ff4406e5 Bug 664688 - JavaScript evaluation "permission denied" after navigation to a different domain; r=past 2012-06-03 13:17:16 +03:00
Mihai Sucan
265990e66a Bug 760837 - Intermittent browser_webconsole_bug_595934_message_categories.js | expectUncaughtException was called but no uncaught exception was detected; r=past 2012-06-02 21:20:44 +03:00
Mihai Sucan
a20cfc628b Bug 722685 - Console logging is slow; r=rcampbell 2012-06-02 13:45:32 +03:00
Mihai Sucan
1830a19294 Bug 673148 - (async-webconsole) Part 5 - HUDService.jsm cleanup; r=rcampbell f=jwalker 2012-05-31 13:30:56 +03:00
Mihai Sucan
0477588f67 Bug 673148 - (async-webconsole) Part 4 - Make network logging async; r=rcampbell 2012-05-29 15:48:05 +03:00
Mihai Sucan
888912e17b Bug 673148 - (async-webconsole) Part 3 - Make JS evaluation and object inspection async; r=rcampbell 2012-05-25 13:28:47 +03:00
Ed Morley
cf7c1332a7 Backout 4eafad042c36 (bug 673148) for turning browser_dbg_stack-04.js permaorange 2012-05-25 14:44:17 +01:00
Mihai Sucan
bbd6cf0a57 Bug 673148 - (async-webconsole) Part 3 - Make JS evaluation and object inspection async; r=rcampbell 2012-05-25 13:28:47 +03:00
Gervase Markham
cb6a072c2a Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Mihai Sucan
fb6f0bfa51 Bug 673148 - (async-webconsole) Part 2 - Make script and style errors async; r=rcampbell,felipc 2012-05-10 18:01:37 +03:00
Mihai Sucan
3cde21bf32 Bug 673148 - (async-webconsole) Part 1 - Make console API async; r=rcampbell,felipc 2012-05-10 16:15:10 +03:00
Joe Walker
2a96a838bf Bug 720641 - Integrate GCLI into developer tools global toolbar; r=dcamp,dão,robcee,zpao 2012-05-10 18:33:54 +01:00
Victor Porof
754b6c0456 Bug 747429 - Make it possible to start a remote debugger only in a new chrome window; r=rcampbell 2012-05-03 20:36:40 +03:00
Ehsan Akhgari
29aaa25460 Merge backout; a=me 2012-05-02 16:22:51 -04:00
Ehsan Akhgari
8fe832a522 Backout the merge from fx-team because of Ts regressions (no bug)
This is the backed out range:
http://hg.mozilla.org/mozilla-central/pushloghtml?changeset=a974c45914eb
2012-05-02 16:20:02 -04:00
Joe Walker
f21f948c1e Bug 720641 - Integrate GCLI into developer tools global toolbar; r=dcamp,dão,robcee,zpao 2012-04-25 10:12:06 +01:00
Raymond Lee
b594b1509c Bug 730840 - Use getBrowserURL() in Firefox tests to ease porting them. r=dao 2012-04-27 09:44:53 +08:00
Ehsan Akhgari
7ee6602b21 Merge the last green PGO changeset on mozilla-inbound into mozilla-central; a=me 2012-04-18 16:18:04 -04:00
Ed Morley
67387f3d0e Merge last PGO-green changeset of mozilla-inbound to mozilla-central a=merge 2012-04-17 17:47:09 -07:00
Bobby Holley
1d9be38c0f Bug 746221 - Pull properties for comparison off the prototype to avoid mismatches with expandos. r=past a=test-only 2012-04-18 10:09:07 +02:00
Bobby Holley
0256bd5bee Bug 746021 - Don't assert that the window ids are the same when they shouldn't be. r=msucan 2012-04-17 19:25:48 +02:00
Mark Capella
6f210923fa Bug 745119 - Clean up TEST_URIs in webconsole tests; r=rcampbell 2012-04-15 23:10:00 +03:00
Victor Porof
2c2a92a96e Bug 741322 - Refactor debugger UI, make it slimmer; r=past 2012-04-09 08:15:47 +03:00
Panos Astithas
24e2e8ef1e Bug 723563 - Use findScripts to retrieve the list of scripts known to the debugger; r=rcampbell 2012-03-30 11:25:52 +03:00
Henri Sivonen
71efda6e2b Bug 672453 - Whine to console about various character encoding declaration-related authoring errors. r=smaug. 2012-03-24 13:34:42 +02:00
Victor Porof
2d1db75238 Bug 725717 - GCLI needs a 'tilt' command; r=jwalker 2012-02-22 19:18:49 +02:00
Panos Astithas
0dd2a65523 Bug 683503 - GCLI needs commands to control the debugger; r=jwalker,dcamp 2012-02-10 09:46:04 +02:00
Ed Morley
4b8e39bfee Merge mozilla-central to mozilla-inbound 2012-02-07 21:05:31 +00:00
Joe Walker
a8a9358269 Bug 707131 - GCLI Completer could be simplified if repeated spans are not a performance issue; r=dcamp 2012-02-07 10:20:20 +00:00
Joe Walker
8ab3d7f72b Bug 709223 - GCLI needs a 'resource' type; r=dcamp 2012-02-07 10:20:20 +00:00
Jason Orendorff
eed6aab739 Bug 699565 - Part 4 - for-of loops on array-like DOM object. r=bz. 2012-02-07 12:57:17 -06:00
Dão Gottwald
3c84c69bef Bug 720985 - Make some tests stop polluting the global scope 2012-02-03 10:13:41 +01:00
Dão Gottwald
35c9461a0d Bug 720985 - Make some tests stop polluting the global scope 2012-02-02 09:56:35 +01:00