Ed Morley
7a49fdc15c
Bug 920570 & bug 920876 - Skip-if browser_codemirror.js on linux for too many intermittent failures
2013-10-14 22:56:25 +01:00
Ms2ger
37114e13e1
Bug 922268 - Remove empty makefiles; r=gps
2013-10-03 09:10:00 +02:00
Gregory Szorc
d3405d579f
Bug 920223 - Part 3: Mass convert MOCHITEST_BROWSER_FILES to manifests; rs=Ms2ger
2013-09-30 09:52:06 +02:00
Ed Morley
697a1cc250
Backed out changeset 8b02873ee07e (bug 920223)
2013-09-30 12:50:05 +01:00
Gregory Szorc
3bbbcf0fd0
Bug 920223 - Part 3: Mass convert MOCHITEST_BROWSER_FILES to manifests; rs=Ms2ger
2013-09-30 09:52:06 +02:00
Anton Kovalyov
b489d46929
Bug 912260 - Make Scratchpad use CodeMirror. r=robcee r=msucan
2013-09-20 11:34:10 -07:00
Mike Hommey
b207d5baf7
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
2013-09-05 09:01:46 +09:00
Gregory Szorc
ff78fc2b71
No Bug - Removing empty Makefile.in files; r=me
2013-07-18 09:09:28 -07:00
Mike Shal
4b9927492c
Bug 880245 - Move EXTRA_JS_MODULES to moz.build (batch #3 ); r=joey
2013-06-28 15:17:07 -04:00
Girish Sharma
99c70bbe8a
Bug 886474 - Stop using Ctrl + ] [ to match brackets in source editor, r=msucan
2013-07-02 16:07:31 +05:30
Girish Sharma
6624c22c4d
Backout 4cdab5388392 (Bug 886474) because of wrong shortcut modifier
2013-07-02 16:05:09 +05:30
Girish Sharma
e11d5101b0
Bug 886474 - Stop using Ctrl + ] [ to match brackets in source editor. r=msucan
2013-06-27 00:51:33 +05:30
Brandon Benvie
f7e4233d7f
bug 679364 - Use content/browser/devtools/* for aliases; r=rcampbell
2013-04-30 11:56:00 -04:00
Kyle Machulis
331f36baa9
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
2013-04-01 11:36:59 -07:00
Kyle Machulis
ec9b53db93
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
2013-03-29 15:12:58 -07:00
Kyle Machulis
0419a0b889
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
2013-03-29 13:56:18 -07:00
Gregory Szorc
1a3da6acf4
Bug 784841 - Part 18d: Convert /browser; r=gavin f=Ms2ger
2013-02-25 12:47:18 -08:00
Mihai Sucan
aedf08a458
Bug 826388 - Allow single click on line numbers to add/remove breakpoints; r=rcampbell
2013-01-03 21:29:53 +02:00
Mihai Sucan
70512efba4
Bug 725392 - Source Editor: add a method to convert mouse coordinates to character offsets, r=msucan
2012-08-02 22:30:46 +03:00
Kyle Huey
76a2832eea
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
2012-10-31 09:13:28 -07:00
Vicamo Yang
ea784216bd
Backout 67cb43bb8865: Breaks B2G Marionette
2012-10-31 16:35:11 +08:00
Kyle Huey
c82a2d6fea
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
2012-10-30 12:28:11 -07:00
Ed Morley
c34b7d9377
Backout a145ded68994, e0cf397089ec & 1545e91c658e (bug 798491) for bustage on a CLOSED TREE
2012-10-30 17:02:31 +00:00
Kyle Huey
8078ab712e
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
2012-10-30 08:26:12 -07:00
Girish Sharma
197e99bc7e
Bug 744021 - Source Editor jump to prev/next block should move to prev/next sibling block when caret has no parent block; r=msucan
2012-10-12 22:27:18 +05:30
Abhishek Potnis
bcb5d9c439
Bug 691925 - Replaced content.focus() with gBrowser.selectedBrowser.focus() and/or window.focus(). r=dao
2012-09-19 12:59:26 +02:00
Mike Hommey
0f9f294ea0
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
2012-08-04 20:26:44 +02: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
Ehsan Akhgari
797430c93f
Bug 769881 - copyStringToClipboard Optional parameters should go at the end, also this will make it backward compatible for version bumped extensions; r=roc
2012-07-01 14:18:23 -04: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
Thaddee Tyl
e16150af0e
Bug 714832 - [Linux] the redo command should also have the ctrl-y shortcut; r=msucan
2012-06-16 12:02:32 +03:00
Gervase Markham
cb6a072c2a
Bug 716478 - update licence to MPL 2.
2012-05-21 12:12:37 +01:00
Robert Longson
e4d07f9bdc
Bug 528332 - Implement non-scaling-stroke vector-effect. Part 2 - SVG changes r=dholbert
2012-05-18 09:34:25 +01:00
Girish Sharma
822725e6aa
Bug 729960 - Source Editor: add shortcuts to quickly jump to the code block start and end; r=msucan
2012-04-09 13:31:45 +03:00
Girish Sharma
4135a0c9b7
Bug 739192 - Source Editor should toggle comment on line or selection with one key binding; r=msucan
2012-04-09 13:31:45 +03:00
Mihai Sucan
bc6ce51db1
Bug 731721 - Source Editor stepping support; r=rcampbell,past
2012-03-14 18:23:39 +02:00
Pranav Ravichandran
ecd8472b3a
Bug 725430 - Add feature to sourceeditor/scratchpad: comment/uncomment line/block of code; r=msucan
2012-03-16 15:17:11 +02:00
Mihai Sucan
278d262a00
Bug 734432 - Add Orion ProjectionTextModel to our package; r=rcampbell
2012-03-11 13:25:19 +02:00
Girish Sharma
7aab88bcf1
Bug 729480 - Link to rule in Style Editor should show the relevant line at the top of the editor's viewport; r=msucan f=msucan
2012-03-11 11:50:01 +02:00
Mihai Sucan
5cbe6f3ea1
Bug 731394 - Source Editor in read only mode is not entirely read only; r=rcampbell f=rcampbell
2012-03-08 19:37:35 +02:00
Mark Capella
776caaa79c
Bug 730898 - Reuse editMenuKeys in scratchpad.xul, r=msucan
2012-03-11 11:47:01 +02:00
Allen Eubank
54788e2df8
Bug 725618 - Source Editor: keyboard shortcut for moving lines up/down; r=msucan
2012-03-06 17:53:59 +02:00
L. David Baron
e7872d79a1
Fix uses of removed CSS2Properties.MozOutline DOM property (replaced by outline). (Bug 730532, patch 3) r=mihai.sucan
...
Note that since these are all property sets and since the unprefixed set
is already present in all cases, they don't block actually removing the
property.
2012-02-29 20:47:52 -08:00
Mihai Sucan
5fe79ffa8e
Bug 684445 - Orion source editor should have built-in context menu; r=rcampbell f=rcampbell
2012-02-27 20:08:45 +02:00
Mihai Sucan
0f3b20ef33
Bug 700893 - API for tracking unsaved/saved state in source editor; r=rcampbell f=fayearthur
2012-02-17 19:11:17 +02:00
Mihai Sucan
fb67da191a
Bug 717613 - Make sure the primary selection is not updated too often in the Source Editor; r=rcampbell
2012-02-08 22:59:33 +02:00
Mihai Sucan
bcbee3e083
Bug 712982 - can't select line by clicking the line number in scratchpad; r=rcampbell
2012-02-20 19:13:19 +02:00
Mihai Sucan
27f363f60e
Bug 717219 - Source Editor should highlight the current line in HTML documents; r=rcampbell
2012-02-08 22:49:10 +02:00
Mihai Sucan
20586023bb
Bug 707987 - Ability to set breakpoints in the Source Editor (orion); r=rcampbell f=past
2012-02-18 12:58:54 +02:00
Mihai Sucan
8cd529cda4
Bug 718816 - Orion upstream update (with debugger ruler support code); r=rcampbell
2012-02-21 20:05:46 +02:00