Christoph Kerschbaumer
5bc71528dc
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - netwerk/ changes (r=sworkman,sicking)
2014-12-12 09:07:36 -08:00
Christoph Kerschbaumer
1e54ee4250
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - modules/ changes (r=mwu)
2014-12-12 09:07:23 -08:00
Christoph Kerschbaumer
b3d1653ff6
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - image/ changes (r=seth)
2014-12-12 09:06:54 -08:00
Christoph Kerschbaumer
85302dc6bc
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - extensions/ changes (r=karlt)
2014-12-12 09:06:42 -08:00
Christoph Kerschbaumer
a4375f9cf0
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - dom/ changes (r=sicking)
2014-12-12 09:06:09 -08:00
Christoph Kerschbaumer
35fd1192e7
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - chrome/ changes (r=sicking)
2014-12-12 09:05:34 -08:00
Christoph Kerschbaumer
09b44e1b01
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - ioservice/ changes (r=sicking,sworkman)
2014-12-12 09:05:21 -08:00
Christoph Kerschbaumer
d1614ac429
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - netUtil changes (r=sicking,sworkman)
2014-12-12 09:05:09 -08:00
Christoph Kerschbaumer
97e4b52984
Bug 1110615 - Fix inheriting problem for blobs (r=sicking)
2014-12-12 09:03:47 -08:00
Monica Chew
63de38c180
Bug 1101969: Disable pinning on media.mozilla.com (r=keeler)
2014-12-12 09:10:57 -08:00
Monica Chew
04d69a9f5b
Bug 1004781: Enable pinning for facebook in production mode (r=keeler)
2014-12-12 09:10:53 -08:00
Chris Manchester
a641e6246c
Bug 1099331 - Allow navigation resulting in about:blocked or about:error pages when explicitly requested without returning an error from the marionette server.;r=automatedtester
...
This allows navigation resulting in a blocked or error page without returning an error to the client. If an error page is reached, an error is returned in cases this was not specifically requested in the client: client.navigate("about:neterror") will navigate to this page and return to the client without an error, but client.navigate("does.not.exist.") will return to the client with an error as it has previously.
2014-12-12 12:08:32 -05:00
Chris Manchester
11a1ff5261
Bug 1055765 - Implement log buffering as a handler in mozlog.;r=jgraham
2014-12-12 12:08:31 -05:00
Chris Manchester
c3c9e22175
Bug 941749 - Add support for returning both known tabs and chrome windows from the marionette server.;r=automatedtester
...
This splits the api for getWindowHandles and getChromeWindowHandles for those
managing windows and tabs separately in tests. getWindowHandles is
re-implemented to return tabs when appropriate, and getChromeWindowHandles is
added to correspond to individual os windows (the prior behavior of
getWindowHandles). current_window_handle now corresponds to a tab on desktop,
while chrome_window_handle is provided for the current OS window.
switch_to_window will accept either a chrome window handle or tab handle.
In the case of a tab, switching will select the tab. In the
case of a chrome window handle, the prior behavior is retained.
2014-12-12 12:08:31 -05:00
Chris Manchester
bb8ca43969
Bug 941749 - A test managing open windows and tabs with marionette.;r=automatedtester
2014-12-12 12:08:31 -05:00
Patrick McManus
9aa9696cc0
bug 865314 - backout 61ee2e053920 due to crashes 1089638 r=backout
...
--HG--
extra : rebase_source : a402ff7ab1f653320ac577807fbe85143d945af8
2014-12-12 11:48:02 -05:00
Ehsan Akhgari
2b3c79836e
Bug 1101337 - Make the ReplaceSubstring() XPCOM string API linear; r=froydnj
...
ReplaceSubstring() is an O(n*m) algorithm (n being the length of the
string and m being the number of occurrences of aTarget) because we have
to move the remainder of the string, search it again and potentially
memmove most of it again as we find more matches. This patch rewrites
that function to make it O(n+m).
Note that we currently don't build TestStrings.cpp, so the test case in
this patch is not run automatically, but the test case has been verified
to pass separately by moving the test function into Gecko and calling it
during startup and stepping through it in the debugger.
--HG--
extra : rebase_source : 0330c130520802392b92bd094dde85f57cfe6420
2014-12-12 11:47:55 -05:00
Nathan Froyd
941541fed4
Backout bbcf9c812bb5:388e4a23e7fb (bug 1090636), for bustage on a CLOSED TREE
2014-12-12 11:49:15 -05:00
Brad Lassey
a6571098ba
bug 1088758 - Add the ability to mirror tabs from desktop to a second screen, restrict privledged GuM based on calling compartment rather than passed window's document r=rjesup
2014-12-10 09:06:02 -08:00
Ryan VanderMeulen
a71f6ccb8c
Bug 1110260 - Update pdf.js to version 1.0.978. r=bdahl
2014-12-15 18:41:28 -05:00
Vikneshwar
94b9ab6dfa
Bug 1038599 - Called OpenLinkIn from loadURI;r=dao
...
--HG--
extra : rebase_source : 3ff46f5e5ed34e6059331616ae2735d7a3cdf3be
2014-12-15 22:08:16 +01:00
Thejdeep
3b47095505
Bug 1111275 - Replace gBrowser.mCurrentBrowser with gBrowser.selectedBrowser. r=dao
...
--HG--
extra : rebase_source : 8a8ef5fafbdbddf987eb69407444b3a2edc1be19
2014-12-15 22:07:18 +01:00
abdelrhman
3990efb3f1
Bug 1111276 - Replace gBrowser.selectedTab.linkedBrowser with gBrowser.selectedBrowser. r=dao
...
--HG--
extra : rebase_source : d7ef16a16f884458d99dff05efb370694d2ea5e3
2014-12-15 22:05:46 +01:00
Dave Townsend
3c7f55c8ce
Bug 1101624. Try loading a real page after starting the progress listeners to fix browser_alltabslistener.js. r=Gijs
2014-12-15 14:32:29 -08:00
Romain Gauthier
87cd4c7b30
Bug 1107655 - Show the ToS/Privacy display in the Loop panel whenever Get Started is displayed. r=nperriault
2014-12-15 22:28:18 +00:00
Romain Gauthier
8e2e477789
Bug 1109325 - Change the help url for Hello's standalone rooms. r=nperriault
2014-12-15 22:28:18 +00:00
Ryan VanderMeulen
ea023df69a
Backed out changeset cab12d762123 (bug 1087877) for e10s mochitest-dt failures.
2014-12-15 15:58:27 -05:00
Brian Grinstead
577f6c3a70
Bug 1111091 - Move tab separator to the start of the last tab with separated tab button;r=MattN
2014-12-15 12:43:32 -08:00
Wes Johnston
39dc927bd4
Bug 901360 - (Part 5) Don't allow pausing downloads without partial data. r=margaret
...
--HG--
extra : rebase_source : c5455e3d650711692af3f97d90dd002845dcc669
2014-12-08 11:26:36 -08:00
Wes Johnston
4775f1702f
Bug 901360 - (Part 4) Fix clicking on notifications. r=margaret
...
--HG--
extra : rebase_source : 6bac7cd282d7ec795d91c0dbb685027890d6e840
2014-12-08 11:26:36 -08:00
Wes Johnston
7a53624f52
Bug 901360 - (Part 3) Persist download history forever. r=paolo
...
--HG--
extra : rebase_source : 694428b676809cf0a0c10a81d68e02183d11f780
2014-12-08 11:26:36 -08:00
Wes Johnston
a1ef6f3837
Bug 901360 - (Part 2) Fix PDF downloads. r=margaret
...
--HG--
extra : rebase_source : c0b856edd344292fc28384e18e1474cb7198b28a
2014-12-08 11:26:35 -08:00
James Gilbertson
692304178e
Bug 901360 - (Part 1) Use Downloads.jsm for download notifications. r=wesj
...
--HG--
extra : rebase_source : a05527361fcde5d7fd7b77b3bcc46955750d19e2
2014-12-08 11:26:31 -08:00
Mark Banner
2ba69e03f2
Bug 1097862 - Perform the leave notification to the loop-server in a synchronous fashion to give the notification more change of succeeding. r=nperriault
2014-12-15 20:34:31 +00:00
Mark Banner
77b90a61a0
Bug 1111560 - Upgrade Loop's use of sinon to version 1.12.2. r=nperriault
2014-12-15 20:34:30 +00:00
Jacob Clark
ec58d2a226
Bug 1111284 - Improve error messages of Sqlite.jsm by including specific error message. r=Yoric
2014-12-14 21:26:31 +00:00
Richard Marti
d08b318c3c
Bug 1111236 - Remove the border around the #categories of in-content pages. r=jaws
2014-12-13 18:55:10 +01:00
Eugen Sawin
8049b84457
Bug 1109940 - Wrap Android DNS resolver functions. r=glandium
2014-12-15 17:05:58 +01:00
wesj
8d9b270e38
Bug 1109198
- Turn on Downloads integration on release builds [r=mark.finkle]
2014-12-15 09:48:00 -08:00
Wes Johnston
523a4f5389
Bug 1109165 - "Remove lock screen widget" [r=mark.finkle]
2014-12-15 10:02:00 -08:00
Fayolle Florent
ac08f68a13
Bug 1108212 - In the DevTools Inspector tree, pressing delete should move to the next element. r=bgrins
2014-12-07 14:54:00 -05:00
Tom Tromey
18bb6d0861
Bug 1050770 - Add paint details to timeline. r=smaug, r=mattwoodrow
2014-12-11 10:40:00 -05:00
Margaret Leibovic
c599adcd28
Bug 1107133 - Expose tracking protection in Fennec privacy preferences. r=liuche
...
--HG--
extra : rebase_source : c871a80ba90ed7f5b4d626d4d04f64a7e6e74a4c
2014-12-08 15:17:32 -08:00
Jared Wein
bff21aff10
Bug 1008172 - Scrolling when focused on the tabbox should not change the selected tab for the in-content preferences. r=Gijs
2014-12-12 14:15:13 -05:00
Dan Mosedale
6cd223b667
Bug 1101378 - self-image can be cropped, meaning the user doesn't see the entire sent images, r=NiKo`
2014-12-12 11:01:27 -08:00
Mike de Boer
8635e10457
Bug 1109511: listen for the 'delete' event to update the toolbar icon when a room is deleted. r=Niko
2014-12-12 16:39:17 +01:00
Romain Gauthier
1186e7affc
Bug 1106991 - Added missing icon for Hello's "tour". r=nperriault
2014-12-12 15:43:01 +01:00
Carsten "Tomcat" Book
e6e5152ba8
Merge mozilla-central to fx-team
2014-12-12 13:58:40 +01:00
Carsten "Tomcat" Book
c06036beba
merge mozilla-inbound to mozilla-central a=merge
2014-12-12 13:51:14 +01:00
Carsten "Tomcat" Book
2f22b1bd1f
merge fx-team to mozilla-central a=merge
2014-12-12 13:17:55 +01:00