Carsten "Tomcat" Book
d0bed1e779
Merge mozilla-central to fx-team
2014-07-10 15:15:52 +02:00
Carsten "Tomcat" Book
20c45ed4e3
merge fx-team to mozilla-central a=merge
2014-07-10 14:54:35 +02:00
Drew Willcoxon
208e19ba98
Bug 1005601 - "gContextMenu is null" thrown for first textarea context menu in a window. r=Gijs
2014-07-10 03:31:04 -07:00
Ed Lee
5d99596b6e
Bug 1036280 - Newly added links are type=undefined instead of history [r=adw]
...
Include history type and make link creation the same by removing bgColor/imageURI.
2014-07-09 21:16:48 -07:00
Asaf Romano
018c14fdc2
Bug 1018679 - History/Bookmarks migration from Safari fails if the corresponding Property List file uses 3-byte integers. r=mak
2014-07-09 21:21:47 +03:00
Asaf Romano
2071f8f237
Bug 738910 - Use DataView in PropertyListUtils. r=mak
2014-07-08 16:07:31 +03:00
David Rajchenbach-Teller
ed0d6da5d1
Bug 1034726 - AsyncShutdown payload now represents stacks as an array on a CLOSED TREE. r=yoric
2014-07-08 03:15:00 +02:00
David Rajchenbach-Teller
dfe7f39b45
Bug 1034726 - AsyncShutdown now sends the stack in case of crash. r=froydnj
2014-07-05 10:53:00 +02:00
David Rajchenbach-Teller
c95c0bb63c
Bug 1034977 - Fixing 'Debugging' typo in Sqlite.jsm. r=yoric
2014-07-07 09:06:00 +02:00
David Rajchenbach-Teller
e56f269d11
Bug 1034977 - "Crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) with AsyncShutdownTimer "Sqlite.jsm Waiting for connections to close"" r=gps
2014-07-07 06:29:00 +02:00
Gregory Szorc
cd3dbd7747
Bug 1033836 - Rename services-common to services/common; rs=rnewman
...
The upcoming build system patches don't support hypthens in path names.
Changing this for that reason is kind of silly, but it's the easiest
way. Besides, nothing else uses hyphens in directory names.
--HG--
extra : rebase_source : 42dda2b1f16a3c0bfe17397a70092362e400530f
2014-07-02 16:49:36 -07:00
Alexandru Tifrea
f4fe1350e2
Bug 1004515 - Add support for the find counter in RemoteFinder. r=mikedeboer
2014-07-09 16:27:37 -07:00
Bernardo P. Rittmeyer
d393d66578
Bug 524760 - Hide print.macosx.pagesetup* preference from about:support as it's not useful there. r=MattN
2014-07-03 11:26:00 +02:00
Harsh Pathak
fffec87019
Bug 643041 - Merge nsIX509Cert2 and nsIX509Cert3 into nsIX509Cert, and merge nsIX509CertDB2 into nsIX509CertDB. r=keeler
...
--HG--
extra : rebase_source : 5283c637e45dbee9f741d56cda54fdef1afce16e
2014-07-03 22:09:24 -07:00
Wes Kocher
2e0c891a60
Merge fx-team to m-c a=merge
2014-07-02 17:24:00 -07:00
Carsten "Tomcat" Book
5541b15ad8
Merge mozilla-central to fx-team
2014-07-02 15:11:39 +02:00
Gijs Kruitbosch
d8e39296ea
Bug 1018154 - part 1: replace blocking of security principal inheriting with onpaste handler, r=dao
2014-07-01 15:27:08 +01:00
Wes Kocher
1aab6279bd
Backed out changeset d87da7f7a3a9 (bug 693555) for android and b2g build bustage
2014-07-01 15:50:08 -07:00
Allison Naaktgeboren
06f16488bf
Bug 693555 - Update inline spell checker underlining for multiprocess.r=ehsan,mrbkap
2014-07-01 15:24:27 -07:00
Tim Taubert
15b3e6f664
Bug 1030719 - Properly restore form data for contenteditables r=smacleod
2014-06-26 15:55:16 +02:00
Michael Brennan
3afd8aa770
Bug 1028887 - Cause tests to fail when autoclosing Sqlite.jsm. r=Yoric
2014-06-26 06:24:21 +02:00
Walter Litwinczyk
324cfd1c23
Bug 701948 - Rename nsIGfxInfo::FEATURE_NO_INFO to nsIGfxInfo::FEATURE_STATUS_OK. r=jgilbert
2014-07-01 14:44:09 -07:00
Paolo Amadini
7436cbb7de
Bug 1030714 - Clarify that unhandled rejections indicate an issue with the code. r=Yoric
2014-06-26 13:40:12 +01:00
David Rajchenbach-Teller
a82c78cd53
Bug 1023787 - Make Task.jsm stack rewriting play nicely with xpcshell and mochi tests. r=paolo, r=mikedeboer
2014-06-20 14:23:00 -04:00
Jim Blandy
4d6a633bba
Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
...
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):
- Never set the buffer's mode.
Years ago, Emacs did not have a good JavaScript mode, so it made sense
to use Java or C++ mode in .js files. However, Emacs has had js-mode for
years now; it's perfectly serviceable, and is available and enabled by
default in all major Emacs packagings.
Selecting a mode in the -*- file variable line -*- is almost always the
wrong thing to do anyway. It overrides Emacs's default choice, which is
(now) reasonable; and even worse, it overrides settings the user might
have made in their '.emacs' file for that file extension. It's only
useful when there's something specific about that particular file that
makes a particular mode appropriate.
- Correctly propagate settings that establish the correct indentation
level for this file: c-basic-offset and js2-basic-offset should be
js-indent-level. Whatever value they're given should be preserved;
different parts of our tree use different indentation styles.
- We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
Remove tab-width: settings, at least in files that don't contain tab
characters.
- Remove js2-mode settings that belong in the user's .emacs file, like
js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Nick Fitzgerald
f79fcccd5f
Bug 1000967 - Add source notes for |new| expression and function calls to improve source maps and debugging. r=ejpbruel
2014-06-20 13:09:00 -04:00
Manish Goregaokar
dfd5b80652
Bug 978857 - Create Battery.jsm. r=Yoric
2014-07-01 05:50:00 +02:00
Michael Brennan
98148b703a
Bug 939072: Auto-close Sqlite connections on finalization; r=Yoric
...
--HG--
extra : rebase_source : 07a2987082723c20b75667615a2d04e497d31f9a
2014-06-11 23:40:17 +02:00
Michael Brennan
a6cd893d51
Bug 939072: Refactor Sqlite connections to support finalization; r=Yoric
...
--HG--
extra : rebase_source : 2171ab3b3f7cf654ccc37865f5def9fc7f133e3c
2014-06-11 23:40:06 +02:00
Ed Morley
ff723affc4
Merge latest green fx-team changeset and mozilla-central; a=merge
2014-06-19 15:59:56 +01:00
David Rajchenbach-Teller
55ed50c27f
Bug 1027033 - AsyncShutdown errors should cause test failures but should not break AsyncShutdown. r=froydnj
2014-06-18 05:40:00 -04:00
Birunthan Mohanathas
ec8396a564
Bug 1016240 - Exterminate CR+LF line endings. r=briansmith,cpearce,ehsan,gavin
2014-06-18 17:56:02 -07:00
David Rajchenbach-Teller
2d13fbc16d
Bug 1010518 - Maintaining stack information through Task.jsm. r=paolo
2014-06-09 13:27:00 +02:00
Bernardo P. Rittmeyer
9b1437e391
Bug 804430 - Add list of whitelisted locked prefs to about:support. r=Unfocused
2014-06-10 10:49:00 -04:00
Drew Willcoxon
b94f908d93
Bug 1013051 - Fix "Comparable link missing required property: frecency" error. r=ttaubert
2014-06-10 10:34:20 -07:00
Ed Lee
55480a23b3
Bug 975235 - Send click pings for Directory Tiles (including which link, tile, other metadata) [r=adw]
...
Send a ping from the DirectoryLinks module on various click actions from newtab page.
2014-06-09 22:03:23 -07:00
Gijs Kruitbosch
512849a7ab
Bug 1016419 - implement showing lwt in customization mode, r=mconley,jaws
2014-06-02 21:59:38 +01:00
Tim Taubert
c7b1cf5924
Backed out changeset 84a0967ba12d (bug 804430)
2014-06-08 08:28:05 +02:00
Bernardo P. Rittmeyer
27ba2c13df
Bug 804430 - Added list of whitelisted locked prefs to about:support. r=Unfocused
2014-06-05 02:47:00 +12:00
David Rajchenbach-Teller
9bfe2ad5dd
Bug 1022198 - AsyncShutdown.jsm typo fix. r=yoric
2014-06-07 10:21:00 -04:00
Maxim Zhilyaev
17997f9c38
Bug 995806 - test_DirectoryLinksProvider.js xpcshell test makes tcp connection to example.com [r=mcmanus]
...
Point to localhost instead of nosuchhost for tests.
2014-06-06 11:02:55 -07:00
Ed Lee
b1947e1117
Bug 1019298 - Use Telemetry to count which directory links were shown in which tile position [r=adw f=gfritzsche]
...
Remember the directory index and trigger the telemetry probe for link0-8 and tile0-8.
2014-06-05 00:29:51 -07:00
David Rajchenbach-Teller
76baae5b1b
Bug 1018895 - Make AsyncShutdown output easier to parse by TBPL. r=froydnj, r=edmorley
2014-06-03 01:14:00 -04:00
Maxim Zhilyaev
7fd4ed340b
Bug 993906 - Package and send appropriate data with remotely hosted links request [r=adw]
...
Save a copy of the directory links count to send with the links request.
2014-06-02 09:14:08 -07:00
Gijs Kruitbosch
5f4648d31d
Bug 1016582 - pin new back/fwd/refresh/stop/star group at the top of the context menu, r=jaws
...
--HG--
extra : rebase_source : 26b6555b405e247daab91317ac9bed284fb7fb63
2014-05-29 12:08:32 +01:00
David Rajchenbach-Teller
304bcf36bb
Bug 1014473 - Trivial code cleanup on AsyncShutdown. r=froydnj
2014-05-27 14:21:00 -04:00
Maxim Zhilyaev
cfcba2c759
Bug 993904 - Use cached directory links instead of locally packaged links [r=adw]
...
Read in the local file instead of fetching the packaged file.
2014-05-27 13:59:34 -07:00
Maxim Zhilyaev
6fac9f5dc0
Bug 993901 - Implement logic to decide when to fetch remotely hosted links [r=adw]
...
Download links file if it's been a day on init, new tab load, or pref change.
2014-05-27 13:59:33 -07:00
Wes Kocher
c48da415e3
Backed out changeset 94eef72cb9b7 (bug 993901) for causing OSX bc1 to frequently fail in browser_tabopen_reflows.js
2014-05-28 17:00:32 -07:00
Wes Kocher
d09429c2f2
Backed out changeset 9e93a0ac18a0 (bug 993904) for depending on 94eef72cb9b7, which I'm about to back out for bustage
2014-05-28 16:59:30 -07:00