Commit Graph

128 Commits

Author SHA1 Message Date
Ed Morley
29308c09dd Bug 798419 - Fix incorrect spellings of success(ful) in test output; r=me 2012-10-05 17:48:15 +01:00
Mark Goodwin
b035e0bc43 Bug 770099 - Send CSP policy and report information to Web Console (Part 2); r=dveditz,msucan,jwalker 2012-10-01 10:10:30 +01:00
Anton Kovalyov
5287bb665f Bug 638949 - Please add Copy Location in the context menu for URLs in the web console. r=msucan 2012-09-19 14:38:30 -07:00
OHZEKI Tetsuharu
d1642f4d0a Bug 764572 - add "Open URL" option to net panel items' context menu; r=msucan 2012-09-18 19:08:29 +03:00
Girish Sharma
fec5f5eb4c Bug 704983 - Make request and response body logging more discoverable in the Web Console. r=msucan 2012-09-08 03:38:54 +05:30
Mihai Sucan
e2d62f4859 Bug 785954 - Intermittent browser_webconsole_bug_599725_response_headers.js | an unexpected uncaught JS exception reported through window.onerror - TypeError: browser is null; r=rcampbell 2012-08-27 21:28:08 +03:00
Jen Fong-Adwent
e804715474 Bug 704204 - Allow user to increase Web Console font size; r=msucan 2012-08-22 23:18:48 +03:00
Thaddee Tyl
3880f3d0ac Bug 780791 - WebConsole autocompletion doesn't autocomplete on string literals; r=msucan 2012-08-17 18:38:59 +03:00
Justin Dolske
ac039e1de9 Bug 661813 - Fix intermittent failure in browser_webconsole_bug_595934_message_categories.js. r=mihai 2012-08-15 18:04:52 -07:00
Thaddee Tyl
6efc22b14a Bug 779415 - The WebConsole autocompletion doesn't deal with non-objects (numbers, strings); r=msucan 2012-08-13 18:51:46 +03:00
Tim Taubert
ac2fe49ead merge m-c to fx-team 2012-08-05 11:31:54 +02:00
Mihai Sucan
c0a98998d3 Bug 676722 - The output of console.log(object) isn't expandable/inspectable in the Web Console; r=rcampbell 2012-08-03 23:14:01 +03:00
Rob Campbell
e866598ecf merge m-c to fx-team 2012-08-03 17:09:03 -04:00
Panos Astithas
629e6685b4 Backout 7e5f3a8a7ca7 due to test oranges 2012-08-03 12:01:14 +03:00
Mike Hommey
c1b35e7b2a Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Mihai Sucan
f5d6b3bb95 Bug 778597 - Intermittent browser_webconsole_position_ui.js | Timed out while waiting for: web console position changed to 'window'; r=rcampbell 2012-08-01 21:32:38 +03:00
Mihai Sucan
29490b4694 Bug 688981 - Place the web console in its own iframe; r=rcampbell,dao 2012-07-26 18:06:04 +03:00
Mihai Sucan
61cab7c5b7 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
b6483fed80 Bug 778732 - Change JSTerm's $ helper function from getElementById to querySelector; r=msucan 2012-08-02 12:53:00 +03:00
Thaddee Tyl
468e035ce8 Bug 775812 - Web Console autocomplete should include full scope; r=msucan 2012-07-25 20:21:03 +03:00
Benjamin Peterson
22a7b2002f Bug 761723 - Save script sources to implement Function.prototype.toString. r=jorendorff,njn,jimb,jst,Ms2ger
--HG--
extra : rebase_source : de1b55647780a30f98fe84d29ee3cb4a437a3ece
2012-07-20 20:17:38 +02:00
Mihai Sucan
56023ad83e Bug 773466 - Console will stop displaying output; r=rcampbell 2012-07-17 14:03:14 +03:00
Tanvi Vyas
3af291126b Bug 737873 - Implement mixed content highlighting in the web console; r=msucan,gavin.sharp 2012-07-10 20:37:26 +03:00
Mihai Sucan
d278a80a8f Bug 772506 - Make sure jsterm eval results are correctly formatted as strings; r=rcampbell 2012-07-10 19:29:58 +03:00
Nathan Froyd
5b30baa4c3 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
db8de764c1 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
526b66f804 Bug 764545 - WebConsole default position should be "below"; r=msucan 2012-06-28 14:03:50 +03:00
Mihai Sucan
f425a7cedb 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
a95b6edeea 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
d4a3fc2d46 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
56912e0ccb Bug 761257 - Further improve Web Console output performance; r=dcamp f=bz 2012-06-12 14:25:07 +03:00
Mihai Sucan
19735f8b99 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
dfaaedcf38 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
8b1be3bc79 Bug 664688 - JavaScript evaluation "permission denied" after navigation to a different domain; r=past 2012-06-03 13:17:16 +03:00
Mihai Sucan
91a9326c6a 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
79c59262b6 Bug 722685 - Console logging is slow; r=rcampbell 2012-06-02 13:45:32 +03:00
Mihai Sucan
cdfb24ae11 Bug 673148 - (async-webconsole) Part 5 - HUDService.jsm cleanup; r=rcampbell f=jwalker 2012-05-31 13:30:56 +03:00
Mihai Sucan
a4cedeb420 Bug 673148 - (async-webconsole) Part 4 - Make network logging async; r=rcampbell 2012-05-29 15:48:05 +03:00
Mihai Sucan
e050000397 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
f04e107ea7 Backout 4eafad042c36 (bug 673148) for turning browser_dbg_stack-04.js permaorange 2012-05-25 14:44:17 +01:00
Mihai Sucan
82642436e9 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
87620f5676 Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Mihai Sucan
14f803f42a 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
c3df6716d8 Bug 673148 - (async-webconsole) Part 1 - Make console API async; r=rcampbell,felipc 2012-05-10 16:15:10 +03:00
Joe Walker
d564306c56 Bug 720641 - Integrate GCLI into developer tools global toolbar; r=dcamp,dão,robcee,zpao
--HG--
rename : browser/devtools/webconsole/test/browser_gcli_break.html => browser/devtools/shared/test/browser_gcli_break.html
rename : browser/devtools/webconsole/test/browser_gcli_commands.js => browser/devtools/shared/test/browser_gcli_commands.js
rename : browser/devtools/webconsole/test/browser_gcli_inspect.html => browser/devtools/shared/test/browser_gcli_inspect.html
rename : browser/devtools/webconsole/test/browser_gcli_inspect.js => browser/devtools/shared/test/browser_gcli_inspect.js
rename : browser/devtools/webconsole/test/browser_gcli_integrate.js => browser/devtools/shared/test/browser_gcli_integrate.js
rename : browser/devtools/webconsole/test/browser_gcli_require.js => browser/devtools/shared/test/browser_gcli_require.js
rename : browser/devtools/webconsole/test/browser_gcli_web.js => browser/devtools/shared/test/browser_gcli_web.js
2012-05-10 18:33:54 +01:00
Victor Porof
680db60c37 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
1c4c90c1ae Merge backout; a=me 2012-05-02 16:22:51 -04:00
Ehsan Akhgari
eca4125e02 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
2831a551ce Bug 720641 - Integrate GCLI into developer tools global toolbar; r=dcamp,dão,robcee,zpao
--HG--
rename : browser/devtools/webconsole/test/browser_gcli_break.html => browser/devtools/shared/test/browser_gcli_break.html
rename : browser/devtools/webconsole/test/browser_gcli_commands.js => browser/devtools/shared/test/browser_gcli_commands.js
rename : browser/devtools/webconsole/test/browser_gcli_inspect.html => browser/devtools/shared/test/browser_gcli_inspect.html
rename : browser/devtools/webconsole/test/browser_gcli_inspect.js => browser/devtools/shared/test/browser_gcli_inspect.js
rename : browser/devtools/webconsole/test/browser_gcli_integrate.js => browser/devtools/shared/test/browser_gcli_integrate.js
rename : browser/devtools/webconsole/test/browser_gcli_require.js => browser/devtools/shared/test/browser_gcli_require.js
rename : browser/devtools/webconsole/test/browser_gcli_web.js => browser/devtools/shared/test/browser_gcli_web.js
2012-04-25 10:12:06 +01:00
Raymond Lee
426bc7fa7f Bug 730840 - Use getBrowserURL() in Firefox tests to ease porting them. r=dao 2012-04-27 09:44:53 +08:00