Commit Graph

22430 Commits

Author SHA1 Message Date
Ehsan Akhgari
6d3b8a8421 Bug 989171 - Double the test timeout 2014-03-30 09:45:00 -04:00
Ehsan Akhgari
812ed9e5f4 Bug 987700 - Double the test timeout 2014-03-30 09:44:29 -04:00
Ehsan Akhgari
596fa30408 Bug 987652 - Double the test timeout 2014-03-30 09:43:50 -04:00
Ehsan Akhgari
024acbe495 Bug 986770 - Double the test timeout 2014-03-30 09:42:39 -04:00
Ehsan Akhgari
1d656aecb9 Bug 986768 - Double the test timeout 2014-03-30 09:41:52 -04:00
Ehsan Akhgari
8e70545b47 Trial fix for bug 986742: Increase the test timeout 2014-03-30 09:07:50 -04:00
Ehsan Akhgari
599d75f689 Trial fix for bug 986760: focus the test runner window and also request a longer timeout 2014-03-29 21:32:20 -04:00
Phil Ringnalda
9fb4d14a71 Backed out 2 changesets (bug 911307) for frequent timeouts in browser_newtab_perwindow_private_browsing.js
Backed out changeset 70638b7c97f1 (bug 911307)
Backed out changeset 3951f7e82b4c (bug 911307)
2014-03-29 12:13:11 -07:00
Phil Ringnalda
3067767289 Merge f-t to m-c 2014-03-29 10:08:41 -07:00
Phil Ringnalda
aa7ac0fff7 Merge m-i to m-c 2014-03-29 09:00:18 -07:00
ffxbld
75016d8f4a No bug, Automated blocklist update from host bld-linux64-spot-411 - a=blocklist-update 2014-03-29 03:13:59 -07:00
Drew Willcoxon
a1b2c46dee Bug 911307 - Reflect changes to top sites immediately in about:newtab (part 2, front-end patch). r=ttaubert 2014-03-28 23:31:05 -07:00
Drew Willcoxon
bd71d42305 Bug 911307 - Reflect changes to top sites immediately in about:newtab (part 2, front-end patch). r=ttaubert 2014-03-28 23:31:05 -07:00
Gregory Szorc
55de744e34 Backed out changeset 4834a3833639 and c580afddd1cb (bug 985084 and bug 97500)
--HG--
extra : histedit_source : c580afddd1cb90bd3cccbc7abc8082132ffe2a3c%2C4371c5775a71d493e82f193b1cf15efd44566645
2014-03-28 21:45:10 -07:00
Wes Kocher
a7366bf369 Merge fx-team to m-c 2014-03-28 16:48:17 -07:00
Wes Kocher
ab88e0d360 Merge m-c to inbound 2014-03-28 17:04:03 -07:00
Gregory Szorc
be328cb50e Bug 989137 - Part 5: Prefix each log message with the instance of the object; r=gfritzsche
We now maintain per-type counts/IDs of each Policy, Experiments, and
ExperimentEntry. The log events for each type are prefixed with the
count/ID so one can easily attribute events to specific instances.

--HG--
extra : rebase_source : 4f1fcc38e5f52ff38b90f9ce71e332492983ff37
2014-03-28 13:04:09 -07:00
Gregory Szorc
0966304b22 Bug 989137 - Part 4: Use a prefixing logger for Experiments logging; r=gfritzsche
Logging in the Experiments module were using a common pattern of
prefixing all messages with the type. We move this prefixing into
a prefixed logger.

--HG--
extra : rebase_source : 213a99e93a3569a7f2ab3d72fb37dc0c538e5c97
extra : source : 96def94c8fb705e5ad8af5a1393492a28ea47d16
2014-03-28 12:57:43 -07:00
Gregory Szorc
788eb651cc Bug 989137 - Part 2: Don't use a global logger; r=gfritzsche
As part of debugging subsequent patches, I ran into issues debugging the
interaction between multiple Experiments instances. To get to the bottom
of the problem, I had to make some changes to the logging framework.
This is the first patch in a sub-series dealing with logging.

This patch stops relying on the global logger. Subsequent patches will
make the logging output aid debugging.

--HG--
extra : rebase_source : 40b34a1444ff3fb70a9da7cf242ee522d6ec07ea
extra : source : 61877a5f15aa01dec05fe1882eae6ad9f18f81a0
2014-03-28 11:20:31 -07:00
Gregory Szorc
6b11c6bff9 Bug 989137 - Part 1: Uninstall unknown experiments; r=Unfocused
Before this patch, experiment add-ons may have existed in the Addons
Manager without the Experiments service knowing about them. This detects
these unknown add-ons and uninstalls them. See the in-line comment on
the rationale behind this decision.

The added unit test fails without the Experiments.jsm change.

--HG--
extra : rebase_source : bb0d0d5d77c7ae562f76e6c647eea25e6a06d99a
2014-03-26 22:20:23 -07:00
Phil Ringnalda
141d303bbb Merge m-c to f-t 2014-03-29 12:14:20 -07:00
Gregory Szorc
a871970414 Bug 985084 - Experiment add-ons should be disabled by default; r=Unfocused
Experiment add-ons are now disabled by default on application load. It
is up to the Experiments Manager to enable them.

This means that experiments may not be able to reliably collect data or
modify behavior close to application startup. (There is a window between
when the Addon Manager initializes and when the Experiments Manager
initializes.) This window is acceptable for the initial version of the
experiments feature.

The Experiments Manager doesn't currently enable experiments on startup.
This will be addressed in a subsequent patch. Its tests do not regress
(indicating a lack of test coverage), so no harm no foul.

--HG--
extra : rebase_source : 3c550090e3480127dc679cc5247f249ee822e76f
extra : amend_source : 9b5349b507c73b4713ec447e4f1a6cb841c11c56
extra : source : 0d72fd2fbd1d091c27fa4a0a9c1944282eaa9ac5
2014-03-21 16:05:29 -07:00
Gregory Szorc
b0f764b432 Bug 975000 - Disable updating and compatibility checking for Experiments; r=Unfocused
Experiment add-ons are installed and updated via the Experiments Manager
service. With this change, the Add-ons Manager lets experiment add-ons
play by their own rules without interference.

--HG--
extra : rebase_source : 4a7c30f8ce36a64f91f9fee49da9061eda568b99
2014-03-28 20:17:04 +01:00
Tim Nguyen
ec67e48006 Bug 989479 - Fix disabled=false state for in-content preferences r=jaws 2014-03-28 17:46:20 -07:00
Mihai Sucan
7d040b727b Bug 987784 - Update the browser console default prefs to match those of the web console; r=robcee 2014-03-26 13:43:27 +02:00
Mihai Sucan
fa280563ff Bug 989025 - WebConsole breaks when trying to autocomplete in objects from different domains; r=past 2014-03-27 23:15:29 +02:00
J. Ryan Stinnett
46f7b35531 Bug 989168 - Disable manifest editor test on Linux. r=me 2014-03-28 17:15:14 -07:00
Wes Kocher
5d964264ae Merge m-c to fx-team 2014-03-28 17:07:04 -07:00
Robert Strong
ea0bcd5ded Followup for Bug 792075 - Update links in Control Panel. r=me 2014-03-28 16:42:53 -07:00
Tim Taubert
068b5e6433 Bug 986951 - Try to fix intermittent browser_tabview_bug6513111.js failures r=gavin 2014-03-27 17:37:17 +01:00
Gijs Kruitbosch
0c655e718a Bug 985958 - fix CSS rules to make :active style work, r=mconley
--HG--
extra : rebase_source : 71959a860f742dcfd5b92fec0d161f048905578d
2014-03-28 21:15:39 +00:00
Jared Wein
b28780ddf0 Bug 989133 - Add a soft hyphen to the character encoding label for en-US to avoid auto-hyphenation. r=MattN 2014-03-28 17:09:31 -04:00
Gijs Kruitbosch
7211362fdc Bug 989009 - should theme live bookmark submenu items correctly, r=mak
--HG--
extra : rebase_source : 2f15dd69b48e0e5b81a84f74224c8c3dcc5c66ec
2014-03-29 13:17:58 +00:00
Gregory Szorc
551ac6a166 Bug 985084 - Experiment add-ons should be disabled by default; r=Unfocused
Experiment add-ons are now disabled by default on application load. It
is up to the Experiments Manager to enable them.

This means that experiments may not be able to reliably collect data or
modify behavior close to application startup. (There is a window between
when the Addon Manager initializes and when the Experiments Manager
initializes.) This window is acceptable for the initial version of the
experiments feature.

The Experiments Manager doesn't currently enable experiments on startup.
This will be addressed in a subsequent patch. Its tests do not regress
(indicating a lack of test coverage), so no harm no foul.

--HG--
extra : rebase_source : 00a55146576f490200a6148bd5516f84def9879c
extra : source : bd901384b973c7ff581fe24a3012f0191b8bbe67
2014-03-21 16:05:29 -07:00
Phil Ringnalda
3bdb0609fe Backed out 6 changesets (bug 974745, bug 975210, bug 974736, bug 972936, bug 972930, bug 975228) for browser_tabopen_reflows.js bustage
CLOSED TREE

Backed out changeset 5aed75c602ce (bug 974745)
Backed out changeset 208ba43a7098 (bug 975210)
Backed out changeset 5227bbca70f0 (bug 974736)
Backed out changeset a695139e96ee (bug 972936)
Backed out changeset 8524260ce49a (bug 972930)
Backed out changeset 667fc810ab49 (bug 975228)
2014-03-29 11:31:05 -07:00
Phil Ringnalda
51e06f8014 Merge m-c to f-t 2014-03-29 10:13:56 -07:00
Victor Porof
feb9eeed9d Bug 917226 - Build a canvas inspection tool, r=rcampbell, jryans 2014-03-29 13:01:37 -04:00
Maxim Zhilyaev
d4a5882820 Bug 974745 - Create click event on Sponsored Tiles to show explanation panel [r=adw]
Have the page know how to show a panel on a sponsored icon click.
2014-03-29 09:31:09 -07:00
Maxim Zhilyaev
9ce088207c Bug 975210 - Augment Site._render logic to allow for Sponsored Tiles images & text [r=adw]
For type={affiliate,organic,sponsored} tiles, show the appropriate imageURISpec instead of thumbnail.
2014-03-29 09:31:09 -07:00
Maxim Zhilyaev
9eaa55a97f Bug 974736 - Add icon to title bar of Sponsored Tiles [r=adw]
Also fixes bug 976638 by moving controls.png to the shared directory.
Add an always visible sponsored icon for tiles that are type=sponsored. Also add ignorehover to the cell to prevent styling when pointing at the sponsored icon that happens to be a child of the cell.
2014-03-29 09:31:08 -07:00
Ed Lee
5ceba98a3e Bug 972936 - Overall impressions metrics for New Tab [r=adw]
Add a histogram for each of the 3 directory link types and count how many were shown.
2014-03-29 09:00:11 -07:00
Ed Lee
62f73aea50 Bug 972930 - Clicks (raw number) for tiles [r=adw]
Provide an array of expected directory link types to count how many were clicked.
2014-03-29 09:00:11 -07:00
Olivier Yiptong
21edf1f19b Bug 975228 - Create logic to merge frecency-pages and Tiles (Tile equiv 1000 frecency) [r=adw]
Use DirectoryLinksProvider for Firefox and make PlacesProvider match in expected Links format.
Make sure there's at least 2 of each type so Telemetry doesn't know for sure which links were used.
2014-03-29 09:00:10 -07:00
Mike de Boer
aa76442b33 Bug 957151: fix styling of primary toolbar buttons on the bookmarks toolbar on Linux. r=Gijs 2014-03-28 16:26:21 +01:00
Robert Strong
18ece55aa5 Bug 792075 - Update links in Control Panel. r=bbondy 2014-03-28 10:58:44 -07:00
Robert Strong
f8e1f734fa Bug 989067 - Stub installer indeterminate progress bar (e.g. marquee) moves too fast on Win XP. r=bbondy 2014-03-28 10:58:36 -07:00
Gijs Kruitbosch
aa6df1530b Bug 986808 - don't insert duplicate separators in sidebar widget, r=mconley 2014-03-27 22:07:42 +00:00
Blair McBride
4ece1a4143 Bug 987492 - CustomizableUI.jsm should provide convenience APIs around windows, r=gijs,mconley 2014-03-24 21:14:00 +00:00
Mike de Boer
a835ebe3c4 Bug 987461: prevent bookmark menu button dropmarker icon to stretch when placed in certain toolbars. r=Gijs 2014-03-28 14:58:44 +01:00
Heather Arthur
f82d0688c8 Bug 985206 - Insert colon after completing a CSS property name in the style editor. r=jwalker f=Optimizer 2014-03-25 12:55:00 +01:00
Jordan Santell
4771981e1d Bug 988661 - Add 'Enable addon debugging' button in toolbox. r=jryans 2014-03-27 15:43:00 +01:00
Jordan Santell
1d63ae7ec1 Bug 987890 - Hide unused tools when using addon debugger. r=jryans 2014-03-27 12:32:00 +01:00
Matthew Noorenberghe
804c45ecff Bug 988305 - UITour: getTarget should catch exceptions from a target's query function. r=Unfocused 2014-03-27 23:14:20 -07:00
Matthew Noorenberghe
d160c12544 Bug 979747 - Inherit text color on toolbars above the titlebar on Windows Classic. f=Gijs r=mikedeboer
[Australis]
2014-03-27 23:14:20 -07:00
Matthew Noorenberghe
469dbb696d Bug 879921 - Replace GTK close icons on Linux with our own except for on menus and dialog buttons. r=Gijs 2014-03-27 23:14:11 -07:00
Matthew Noorenberghe
7680db399a Bug 879921 - Use the "tabbable" class to make the new tab page's close button tabbable. r=Gijs 2014-03-27 23:13:14 -07:00
Wes Kocher
9ba828f8fc Merge m-c to fx-team 2014-03-27 20:24:15 -07:00
Wes Kocher
a7bdfae4f6 Merge fx-team to m-c 2014-03-27 20:07:56 -07:00
Wes Kocher
f69dc0223f Bug 989083 - Disable test browser_tabview_bug643392 for leaking on a CLOSED TREE 2014-03-27 14:50:35 -07:00
Georg Fritzsche
d5a7ec1b66 Bug 986040 - Telemetry experiments: Assure that no experiment addon is running yet before starting an experiment. r=Unfocused
--HG--
extra : rebase_source : 55be48f0b9cffe978c22baa8260b161f2cbc0562
2014-03-27 14:26:59 -07:00
Georg Fritzsche
79a99a9dec Bug 973992 - Telemetry experiments: Make the experiments code use the new experiments addon type. r=Unfocused
--HG--
extra : rebase_source : 54de4767390441a895fca148c2c79483f22c1366
2014-03-27 14:25:04 -07:00
Jared Wein
985bb05790 Bug 962884 - Offer opt-out from auto-hyphenation for labels in the menu panel. r=Gijs 2014-03-27 15:53:18 -04:00
Georg Fritzsche
4616421e6d Bug 986261 - Telemetry experiments unit tests hang when they fail. r=felipe 2014-03-27 14:55:36 +01:00
Georg Fritzsche
922a09db9e Bug 983231 - Telemetry experiments: test manifest condition evaluation. r=felipe 2014-03-26 16:35:59 +01:00
Ed Morley
449379d2cc Backed out changeset 894e40121370 (bug 917226) for browser-chrome failures; DONTBUILD since fixing commit message
CLOSED TREE
2014-03-27 19:09:29 +00:00
Ed Morley
df264302e9 Backed out changeset 7b9fab28c591 (bug 917226) for incorrect commit message generated by qbackout; DONTBUILD 2014-03-27 19:07:31 +00:00
Victor Porof
8c86a85427 Bug 917226 - Build a canvas inspection tool, r=rcampbell
--HG--
extra : rebase_source : 466745d61633e1e56f7fd1f2e680952c52cdf0a4
2014-03-27 18:57:16 +00:00
Dave Townsend
7ad941322a Bug 986838: Add-on SDK modules should be listed after the add-on's own modules. r=fitzgen 2014-03-27 11:35:14 -07:00
Tim Taubert
fcfddff641 Bug 495123 - Save an empty window state if it's the last window closed and there were no others closed in series before r=smacleod 2014-03-27 17:51:59 +01:00
Dave Townsend
abee89a8c8 Bug 986853: Add-on Debugger title is always 'Debugger - (null)'. r=past 2014-03-27 10:29:03 -07:00
Mike de Boer
c8629b9398 [Australis] Bug 477948: update tests for new keyhole on Linux. r=jaws 2014-03-27 18:17:36 +01:00
Mike de Boer
520b4c2142 [Australis] Bug 477948: Keyhole back/ forward button for Linux. r=jaws 2014-03-27 18:17:34 +01:00
Gregory Szorc
1b3f1ac5c7 Bug 973992 - Support experiments add-ons; r=Unfocused
A new type of add-on is introduced: experiments.

Experiments are add-ons that conduct data experiments. They are deployed
to compatible clients and collect additional information about the
client.

--HG--
extra : rebase_source : 98a612933978b3e4bcfb83da9f6a9782c62dc0da
extra : amend_source : 9347a56bc3034c7ea1e50918278c6b9cc1270521
2014-03-19 15:02:58 -07:00
John Shih
585ab9e785 Bug 960426 - Part 6: Fix conflict in browser_dpg_variables-view-filter-03.js. r=past 2014-03-27 15:26:47 +08:00
Ehsan Akhgari
07477b55f2 Bug 965362 - Part 2: Do not assume that all of the contents of the HTTP channel will be available by the time we decide to read it synchronously in devtools tests; r=robcee 2014-03-27 11:20:16 -04:00
Victor Porof
3bebfcdd8a Backed out changeset 882b91ce5a9f, as a relanding of Bug 917226, r=me 2014-03-27 12:24:00 -04:00
Ed Morley
a9d17b7cb7 Backed out changeset 894e40121370 (bug 917226) for mochitest-chrome failures 2014-03-27 16:11:59 +00:00
Dave Townsend
5dcb75658d Bug 986639: Use the __URI__ property of component and module globals to detect which add-on they come from (missed review comments). r=fitzgen 2014-03-27 09:02:39 -07:00
Mihai Sucan
7719aeb0cb Bug 985425 - Fix for browser_webconsole_bug_601667_filter_buttons.js | A promise chain failed to handle a rejection - TypeError: this.webConsoleClient is null. r=benvie 2014-03-26 23:01:23 +02:00
David Rajchenbach-Teller
213d2f3a40 Bug 944557 - Remove sessionstore-state-write. r=ttaubert 2014-03-27 11:38:01 -04:00
David Rajchenbach-Teller
e5f3b4f65a Bug 944557 - Don't save sessionstore.js in permanent private browsing mode. r=ttaubert 2014-03-27 11:37:45 -04:00
Richard Marti
e33a915795 Bug 738796 - Prefpane stylings. r=jaws 2014-03-23 19:41:28 +01:00
Mike Hommey
521a848168 Bug 989147 - Use new sccache for Linux and Android builds. r=gps 2014-03-28 18:41:06 +09:00
Mike Hommey
87638a0888 Bug 927672 - Get mozmake from tooltool. r=mshal 2014-03-28 18:41:05 +09:00
Ehsan Akhgari
0f3af82c2d Bug 983920 - Port window.sidebar and window.external to WebIDL; r=bzbarsky 2014-03-28 00:03:03 -04:00
Wes Kocher
4cd52a600d Merge m-c to inbound 2014-03-27 20:21:50 -07:00
Mike Connor
52f5995690 bug 991359, build bustage fix, a=CLOSED TREE
--HG--
extra : amend_source : 4181a7a8d6406365996c8668a24510523ba6a974
2014-04-07 14:09:41 -04:00
Mike Connor
e77040d83e Bug 991359 - update context menu form code for Bing, r=gavin
--HG--
extra : rebase_source : 2cd77c32b9a26bee79d594cf45ba5d4cfcbd453e
2014-04-03 19:23:45 -04:00
Mike Connor
3c2cb96051 Bug 958883 - Use HTTPS for Yahoo searches, part 2, r=mfinkle
--HG--
extra : rebase_source : dcb82051a9aa64c2c9899f36b5290575bf87560e
2014-04-03 19:22:50 -04:00
Mike Connor
6799f30162 Bug 958883 - Use HTTPS for Yahoo searches, part 1, r=gavin
--HG--
extra : rebase_source : dfa4223c3b226d3d46150051a7b9c22a88c4c432
2014-04-03 19:22:24 -04:00
Mike Connor
c33b03c196 Bug 940685 - adjust UI test to expect about:home, r=gavin
--HG--
extra : rebase_source : 14c563626da311ee6c87aa5a73f92e8dbae3c97c
2014-03-31 14:56:03 -04:00
Mike Connor
4e9ce83b50 bug 940685 - open about:home instead of searchForm if the search bar isn't available, r=gavin
--HG--
extra : rebase_source : 2bd877e984aab76cd3cdca3973a5f40952c6e1e1
2014-03-31 11:58:03 -04:00
Terrence Cole
44d028c42e Bug 619558 - Enable generational GC on desktop; r=sfink, sr=naveed
--HG--
extra : rebase_source : 7234cc03ed04d48d54ac613e25708a1321501f24
2014-02-05 10:04:16 -08:00
Carsten "Tomcat" Book
d597d0f818 Merge m-c to mozilla-inbound 2014-04-03 12:52:13 +02:00
Tatiana Meshkova
2bd9454956 Bug 990869 - Allow to enable sub Apzc for non WIN gecko clients. r=kats 2014-04-02 18:40:00 +02:00
Carsten "Tomcat" Book
71eee69b46 Merge mozilla-central to mozilla-inbound 2014-03-27 16:01:09 +01:00
Joel Maher
771ea5dd28 bug 933680 - Re-enable browesr_pluginCrashCommentAndURL.js. r=felipe 2014-03-27 10:54:11 -04:00
Carsten "Tomcat" Book
a3d3c8dcb5 merge fx-team to mozilla-central 2014-03-27 14:14:32 +01:00
Carsten "Tomcat" Book
bad79ac3be Backed out changeset 52f43e3f552f (bug 619558) for frequent mochitest other test failure on OS X 10.8 2014-03-27 10:14:39 +01:00
Olivier Yiptong
9bf23741ca Bug 975211 - Create backend logic to provide list of Tiles and associated metadata (image, text, background color) [r=adw]
Package a list of directory links to expose via DirectoryLinksProvider.jsm
2014-03-27 01:03:42 -07:00
Ryan VanderMeulen
3e14ec93b2 Merge m-c to inbound. 2014-03-26 23:09:54 -04:00
Ryan VanderMeulen
c73d8169d7 Merge m-c to fx-team. 2014-03-26 23:08:02 -04:00
Ryan VanderMeulen
4dc5242df5 Merge inbound to m-c. 2014-03-26 20:58:31 -04:00
Dave Townsend
d633915be4 Bug 986639: Use the __URI__ property of component and module globals to detect which add-on they come from. r=fitzgen 2014-03-26 16:04:20 -07:00
Dave Townsend
fec0c9e2da Bug 986108: Make all restartless add-ons debuggable. r=Unfocused, r=fitzgen 2014-03-26 16:03:57 -07:00
Victor Porof
038681c8ab Bug 987310 - Make sure the RequestsMenu is not lazily updated, to avoid a "JavaScript Error: 'aValue.content is undefined'" error being thrown after the test finishes, r=me 2014-03-26 18:04:22 -04:00
Jordan Santell
ac741bf517 Bug 911098 - Implement Addon Debugger UI, r=fitzgen,harthur,mossop
From 8af4148dc10f18bf67e39442ee93169cb66382d5 Mon Sep 17 00:00:00 2001
---
 browser/devtools/debugger/debugger-controller.js   |  36 ++++++-
 browser/devtools/debugger/debugger-panes.js        |  17 +++-
 browser/devtools/debugger/test/browser.ini         |   1 +
 .../debugger/test/browser_dbg_addon-sources.js     | 108 ++++++++++++++++++++
 browser/devtools/debugger/test/head.js             |  29 ++++++
 browser/devtools/framework/ToolboxProcess.jsm      |  31 ++++--
 .../devtools/framework/toolbox-process-window.js   |  18 +++-
 modules/libpref/src/init/all.js                    |   3 +
 .../en-US/chrome/mozapps/extensions/extensions.dtd |   1 +
 toolkit/mozapps/extensions/content/extensions.js   |  55 +++++++---
 toolkit/mozapps/extensions/content/extensions.xml  |  31 +++++-
 toolkit/mozapps/extensions/content/extensions.xul  |   6 ++
 .../mozapps/extensions/internal/XPIProvider.jsm    |   4 +
 .../extensions/internal/XPIProviderUtils.js        |   2 +-
 .../test/addons/test_jetpack/bootstrap.js          |  17 ++++
 .../test/addons/test_jetpack/harness-options.json  |   1 +
 .../test/addons/test_jetpack/install.rdf           |  28 ++++++
 .../extensions/test/browser/browser-common.ini     |   1 +
 .../test/browser/browser_debug_button.js           | 112 +++++++++++++++++++++
 toolkit/mozapps/extensions/test/browser/head.js    |   3 +
 .../extensions/test/xpcshell/test_isDebuggable.js  |  36 +++++++
 .../extensions/test/xpcshell/xpcshell-shared.ini   |   1 +
 22 files changed, 508 insertions(+), 33 deletions(-)
 create mode 100644 browser/devtools/debugger/test/browser_dbg_addon-sources.js
 create mode 100644 toolkit/mozapps/extensions/test/addons/test_jetpack/bootstrap.js
 create mode 100644 toolkit/mozapps/extensions/test/addons/test_jetpack/harness-options.json
 create mode 100644 toolkit/mozapps/extensions/test/addons/test_jetpack/install.rdf
 create mode 100644 toolkit/mozapps/extensions/test/browser/browser_debug_button.js
 create mode 100644 toolkit/mozapps/extensions/test/xpcshell/test_isDebuggable.js
* * *
Leak fix
2014-03-25 10:59:14 -07:00
Gijs Kruitbosch
bc5c1df1c7 Bug 987177 - make destroyWidget clear caches for XUL wrappers, r=jaws 2014-03-26 00:38:14 +00:00
Gijs Kruitbosch
2e3064febb Bug 987177 - invalidate wrapper's node reference, r=jaws 2014-03-26 00:28:58 +00:00
Victor Porof
eec4c9195c Bug 987310 - Tentatively relanded, as a backout of changeset a26977bf2252, a possibly incorrect assumption that it caused orange in bc2 linux tests, r=me 2014-03-26 16:08:02 -04:00
Victor Porof
16c4ba710d Bug 988329 - Netmonitor pie charts shouldn't display 'Loading' when the source data is available but empty, r=rcampbell 2014-03-26 16:07:30 -04:00
Victor Porof
62a997bc99 Bug 988328 - Netmonitor pie charts shouldn't have hover effects when there's only one slice available, r=rcampbell 2014-03-26 16:07:30 -04:00
Tim Nguyen
9886c75f98 Bug 986932 - Fix alignment with some items in DevTools options panel. r=bgrins DONTBUILD 2014-03-26 11:27:15 -07:00
Wes Kocher
5814a1fd0c Backed out changeset 3960ad0617ff for landing with the wrong bug number. 2014-03-26 11:26:26 -07:00
Tim Nguyen
c34dafe7a6 Bug 986982 - Fix alignment with some items in DevTools options panel. r=bgrins 2014-03-26 11:21:04 -07:00
Tim Nguyen
9d486c37e0 Bug 983801 - Remove border radius from bookmarks panel submenus on Windows 8 r=mdeboer 2014-03-26 10:43:48 -07:00
Tim Taubert
1474af8de3 Bug 984843 - Try to fix intermittent timeouts and leaks r=ehsan
From 55be314a97a4934167ad466dc884fb5c933dea1e Mon Sep 17 00:00:00 2001
2014-03-26 09:27:19 +01:00
Mike de Boer
a1aebf9bd5 [Australis] Bug 987443: fix zoom button label rounding. r=Gijs 2014-03-25 12:12:17 +01:00
Girish Sharma
05e38624da Bug 987870 - Fix multiple issue of cycling suggesting and pressing keys with modifiers in an empty inplace editor, r=bgrins 2014-03-26 02:16:31 +05:30
Paolo Amadini
144b6e8493 Bug 988341 - Convert code before switching Task.jsm to use Promise.jsm. r=mak 2014-03-26 18:15:00 +01:00
Mike Conley
ce96846bf8 Bug 986920 - New tab button has equal z-index to non-selected tabs in Windows Classic mode. r=Gijs. 2014-03-25 11:40:00 -04:00
Carsten "Tomcat" Book
8d35ba8bf2 Backed out changeset dff900f56c49 (bug 987310) for orange in bc2 linux tests 2014-03-26 15:45:17 +01:00
Robert Strong
d767bb2e5a NSIS installer file changes for Bug 962381 - Add support for NSIS 3.0a2. r=bbondy 2014-03-26 12:20:44 -07:00
Patrick Brosset
f45c17576e Bug 968727 - Move common test runner parts in external helper files; r=bgrins 2014-03-26 14:38:06 +01:00
Carsten "Tomcat" Book
82d342c637 Merge mozilla-central to fx-team on a CLOSED TREE 2014-03-26 14:01:16 +01:00
Carsten "Tomcat" Book
c798708834 Backed out changeset 81f230994acd (bug 980502) for hopefully fixing gi tests 2014-03-26 11:09:34 +01:00
Wes Kocher
0d58e41dd9 Merge fx-team to m-c 2014-03-25 20:03:13 -07:00
Mihai Sucan
d1c4c2a448 Bug 981707 - Allow the codemirror test harness to report PASS/FAIL messages to the Mozilla test harness. r=harth 2014-03-24 23:06:22 +02:00
Thomas Andersen
a8319e82df Bug 971798 - Do not enable CSS reflow logging when clicking the CSS category. r=msucan 2014-03-25 00:28:37 +01:00
Benjamin Smedberg
2403d9ca4d Bug 987225 - Combine the various tasks in Experiments.jsm to a single serial task. r=gfritzsche (delegated from felipe). Also fixes:
* no need to pass an addon/experiment ID to .disableExperiment()
* fix multiple-logging when multiple Experiments() objects are created as in tests
* ensures that all dirty writes actually get written
2014-03-25 13:50:34 -04:00
Gijs Kruitbosch
757aad2702 Bug 987615 - fix layout of buttons which are too long in customize mode, r=jaws 2014-03-26 17:18:06 +00:00
Marco Bonardo
31eb1ae673 Bug 983571 - browser.bookmarks.autoExportHTML = true no longer works. r=Yoric 2014-03-25 17:25:58 +01:00
Tim Taubert
07b92e3a5b Backed out changeset 84da123a0af0 (bug 895359) 2014-03-25 16:38:26 +01:00
Tim Taubert
9a42d4b439 Backed out changeset 5d896e33c6a6 (bug 895359) 2014-03-25 16:38:25 +01:00
Drew Willcoxon
841d39d3c8 Bug 983453 - Re-enable whatsnew and firstrun pages for Nightly builds. r=MattN 2014-03-25 08:15:11 -07:00
Girish Sharma
f1096600af Bug 913955 - Avoid race conditions and inserting in middle of text in inplace-editor, r=mratcliffe 2014-03-25 20:43:44 +05:30
Girish Sharma
6b69f7e325 Bug 912189 - Show CSS value autocomplete without waiting for first character, r=mratcliffe 2014-03-25 20:43:44 +05:30
Girish Sharma
2c5f9e34c3 Bug 971702 - Style editor to provide meaningful information about hovered text, r=pbrosset 2014-03-25 20:38:52 +05:30
Mihai Sucan
33d0c27479 Bug 972691 - Fix for intermittent browser_bug_865871_variables_view_close_on_esc_key.js | This test exceeded the timeout threshold; r=me 2014-03-25 16:31:12 +02:00
Carsten "Tomcat" Book
d92ae24776 Backed out changeset 8ee507d0a33b (bug 495123) for m-bc bustage 2014-03-25 15:15:13 +01:00
Mihai Sucan
293d8458cc Bug 984857 - Fix for intermittent browser_webconsole_output_02.js,browser_webconsole_output_03.js | This test exceeded the timeout threshold; r=me 2014-03-25 15:18:58 +02:00
Matthew Noorenberghe
5fa6d5c1cf Bug 988144 - UITour: Highlight effects don't occur if a highlight is moved to a different target with the same effect. r=Unfocused 2014-03-26 03:00:18 -07:00
Alexandre Poirot
71d3f56a1f Bug 985555 - Fix inspector loading when browsing a tab history r=bgrins 2014-03-24 11:53:00 +01:00
Victor Porof
c03a50ef4f Bug 987310 - Sanitize the filter predicates loaded from the preferences, r=rcampbell 2014-03-24 15:39:18 -04:00
Robert Strong
45a19ce347 Bug 726781 - No way to distinguish between Firefox release and Firefox ESR via the registry. r=bbondy 2014-03-25 12:17:33 -07:00
Jonathan Griffin
2c813577a2 Bug 979650 - Always build with Marionette for Firefox, b2g desktop, r=ted 2014-03-11 13:22:34 -07:00
Jordan Santell
efe5b8dc80 Bug 980502 - Implement WebAudio actor and AudioNode actor. r=vp 2014-03-06 16:39:00 -08:00
Tim Taubert
496f9363bf Bug 981699 - Skip resizeTo() call when restoring a maximized window that is currently maximized r=smacleod 2014-03-10 09:54:37 -07:00
Carsten "Tomcat" Book
51bdac3e31 Merge mozilla-central to fx-team 2014-03-25 13:43:40 +01:00
Mihai Sucan
00ad005d0d Bug 950430 - Potential fix for intermittent browser_webconsole_chrome.js | Test timed out; r=me 2014-03-25 14:34:05 +02:00
Carsten "Tomcat" Book
05c3a611b5 merge fx-team to mozilla-central 2014-03-25 13:17:42 +01:00
Ed Lee
5ccba59ea9 Bug 980014 - Allow new tab grid layout to reduce rows/columns if the window can't fit 3x3 [r=adw]
Remove newtab-rows and convert the grid to wrap/overflow tiles as necessary by setting the appropriate width and heights. Compute grid dimensions on load/preload and adjust for resizes.
2014-03-24 17:33:08 -07:00
Wes Kocher
164aae25e9 Backed out changeset 3d94ebde9018 (bug 985720) for missing a file from the patch to fix a CLOSED TREE 2014-03-24 18:07:13 -07:00
Tim Nguyen
e86d3f1aa1 Bug 987388 - Add inverted icon for sidebar subview to menuPanel.png for Linux. r=Gijs 2014-03-24 15:12:00 -07:00
Drew Willcoxon
9805c2254e Bug 557665 - Allow specifying SearchForm as a normal <Url> in engine description files (part 2, tests). r=gavin 2014-03-24 20:41:15 -07:00
Monica Chew
d3be5977e3 Bug 985720: Rename urlclassifier.download_block_table and urlclassifier.download_allow_table (r=gcp) 2014-03-24 14:57:59 -07:00
Ryan VanderMeulen
131f3139eb Merge m-c to inbound. 2014-03-24 16:51:09 -04:00
Ryan VanderMeulen
85d2cbd02e Merge inbound to m-c. 2014-03-24 16:47:07 -04:00
Andrew McCreight
a7fdeec832 Bug 986683 - Use a single multiline string for the search engine logo to avoid startup memory bloat. r=gavin 2014-03-24 14:28:44 -04:00
Brian R. Bondy
bf48200eab Bug 981166 - Turn off Metro Firefox. r=jimm 2014-03-24 11:58:29 -04:00
Ms2ger
4589af6f9b Bug 860731 - Part d: Fix packaging; r=janv 2014-03-24 16:11:16 +01:00
Carsten "Tomcat" Book
2476c6cd83 merge fx-team to mozilla-central 2014-03-24 15:12:28 +01:00
Georg Fritzsche
e0beb1ca80 Bug 983360 - Telemetry experiments: add monitoring data to Telemetry payload. r=bsmedberg 2014-03-24 09:58:57 +01:00
Georg Fritzsche
d16974272e Bug 985670 - Telemetry experiments: Decouple experiment and addon ids. r=felipe 2014-03-24 09:58:57 +01:00
Georg Fritzsche
60ec64ab73 Bug 985670 - Telemetry experiments: Don't schedule incorrect timer when there is no pending experiment. r=felipe 2014-03-24 09:58:57 +01:00
Georg Fritzsche
9c80ae9c4b Bug 984387 - Telemetry experiments: test coverage for disabling and removal of experiments via manifest. r=felipe 2014-03-24 09:58:56 +01:00
Gavin Sharp
46a67a3f83 Bug 955950: add pref to disable "reset firefox" nag, r=MattN 2014-03-23 17:41:06 -07:00
Mike Conley
3bdab85262 Bug 984156 - Make subview footer menuseparators have a non-zero height to prevent bookmarks folder scrolling issues. r=mak. 2014-03-23 19:13:50 -04:00
Phil Ringnalda
93d92170f1 Merge f-t to m-c 2014-03-23 08:27:12 -07:00
Matthew Noorenberghe
c912cba7e7 Bug 986688 - Load SignInToWebsite.jsm lazily and on Nightly only. r=felipe 2014-03-22 20:46:18 -07:00
Ehsan Akhgari
762d150c8f Bug 983845 follow-up: Move the header to content/base and enable BrowserFeedWriter for xulrunner as well 2014-03-22 21:34:02 -04:00
Phil Ringnalda
4220e17e44 Merge m-c to f-t 2014-03-22 17:48:30 -07:00
Phil Ringnalda
a6e09c5c74 Merge f-t to m-c 2014-03-22 17:40:04 -07:00
Gijs Kruitbosch
2fbd4e5c0e Bug 986769 - remove character encoding view's call to addShortcut entirely, r=jaws
--HG--
extra : rebase_source : 22ac8e78d2574cbb0e2d85f747b5f71bd940ddd9
2014-03-22 20:51:26 +00:00
Phil Ringnalda
cba757e9f4 Merge m-c to f-t 2014-03-22 08:10:45 -07:00
Phil Ringnalda
39747a1529 Merge m-c to m-i 2014-03-22 08:09:46 -07:00
Marco Bonardo
9bd8bc602c Backout 0469cf95fbfe (bug 983571) cause didn't mean to land it yet. 2014-03-22 15:43:20 +01:00
ffxbld
097f3cd5c5 No bug, Automated blocklist update from host bld-linux64-spot-489 - a=blocklist-update 2014-03-22 03:17:01 -07:00
Sebastian Hengst
3190d47b36 Bug 982615 - Sync panel is not entirely displayed in localized builds. r=mak 2014-03-22 10:30:48 +01:00
Doug Turner
1b505adf19 Bug 977725 - MLS Geolocation seeding GONK GPS Provider. r=kanru 2014-03-22 00:42:55 -07:00
Wes Kocher
a7b570b277 Merge fx-team to m-c 2014-03-21 17:07:40 -07:00
Brian R. Bondy
c4f1afff2d Bug 981166 - Remove Metro registration for all subusers. r=rstrong 2014-03-21 14:47:05 -04:00
Carsten "Tomcat" Book
db6c6a7648 Merge mozilla-central to fx-team 2014-03-24 15:38:14 +01:00
Florian Quèze
79e99cb2ea Bug 976544 - Intermittent browser_devices_get_user_media.js - disable on Linux Debug, rs=Gijs. 2014-03-24 15:16:02 +01:00
Marco Castelluccio
f258044304 Bug 986493 - Lazily load some modules in Webapps.jsm. r=felipe 2014-03-24 09:37:27 -04:00
Florian Quèze
60b2c0f6f6 Bug 979424 - Implement structure and state switching for translation infobar, r=felipe. 2014-03-21 19:07:38 +01:00
Maxim Zhilyaev
ad7ef35f09 Bug 978338 - Update new tab site rendering for fixed ratio tile images [r=adw]
Fix the size, margins, title, borders of tiles to new spec.
2014-03-21 07:22:53 -07:00
Carsten "Tomcat" Book
c209094b2a Merge mozilla-central to mozilla-inbound 2014-03-21 15:20:35 +01:00
Carsten "Tomcat" Book
12e249d1fa merge fx-team to mozilla-central 2014-03-21 15:16:06 +01:00
Stephen Horlander
2b2958c419 Bug 978491 — [Australis] Add inverted icon for Sidebar to menuPanel*.png r=mikedeboer 2014-03-20 23:10:15 -07:00
Masatoshi Kimura
017a04a06a Bug 981237 - Remove DataContainerEvent dependency from Plugin crash handler. r=jst,johns 2014-03-21 13:00:00 +09:00
Boris Zbarsky
b138bfaeec Bug 980962. Fix in-tree consumers to not construct typed arrays without "new". r=jorendorff 2014-03-20 23:19:42 -04:00
Wes Kocher
068291c6a9 Merge m-c to inbound 2014-03-20 19:46:52 -07:00
Monica Chew
8f2c20dee7 Bug 985623: Force url classifier clients to specify which tables to lookup, add a pref to skip hash completion checks (r=gcp) 2014-03-20 14:25:35 -07:00
Paolo Amadini
c94a8fba8e Bug 984872 - Remove deprecated promise.js usage in Firefox for Desktop. r=mak 2014-03-20 22:21:05 +01:00
Gregory Szorc
add4f755f7 Bug 974024 - Add FHR recording of Telemetry Experiments activity; r=bsmedberg
--HG--
extra : rebase_source : 1e875e53da49c69194ee740898ff943d1801d1cf
2014-03-20 14:16:00 -07:00
Jared Wein
f15d0daf90 Bug 969963 - Grey out PanelUI-popup items when a subview is opened. r=mconley 2014-03-21 17:03:11 -04:00
Mike de Boer
a561dc7b90 Bug 982770: restore sidebar splitter and header styles on Windows 8. r=jaws 2014-03-21 17:42:16 +01:00
Gijs Kruitbosch
d415ca90c3 Bug 986515 - classic gradient leaks over other toolbars, r=jaws
--HG--
extra : rebase_source : 262172896476159d99c253a5d1a7dc5e7ffb5ca4
2014-03-22 16:51:27 +00:00
Carsten "Tomcat" Book
42f261e57f Merge mozilla-central to fx-team 2014-03-21 15:35:37 +01:00
Ryan VanderMeulen
077104b33a Backed out 3 changesets (bug 965527, bug 859059, bug 812172) for mochitest and xperf orange on a CLOSED TREE
Backed out changeset 18f579c4308e (bug 965527)
Backed out changeset 70ed33107301 (bug 859059)
Backed out changeset 7b59b92580fa (bug 812172)
2014-03-21 10:33:18 -04:00
Jared Wein
89c0580e77 Bug 940393 - Win8: Text color on inactive tabs makes text very hard to read. r=gijs
--HG--
extra : rebase_source : 03e07612be960c1b3a961e065404034ae0db5ce1
2014-03-20 20:23:36 -04:00
Mike de Boer
b338a03629 Bug 982993: [Australis] increase panel padding back to 10px. This backs out changes made in bug 961727 and deps. r=dao 2014-03-20 17:57:12 +01:00
Phil Ringnalda
be6c79f9d6 Back out bbb44c125553 (bug 940393) for breaking WinXP 2014-03-20 20:57:39 -07:00
Mark Hammond
f65bef3293 Bug 970167 - Disable passwords engine when a master password is set. r=rnewman 2014-03-21 14:22:02 +11:00
Steven MacLeod
e7490bf4df Bug 967028 - Use a SHistoryListener to collect entries from history.pushState(). r=Yoric 2014-03-20 22:52:31 -04:00
Jared Wein
f4708b1dbe Bug 940393 - Win8: Text color on inactive tabs makes text very hard to read. r=gijs 2014-03-20 20:23:36 -04:00
Wes Kocher
a740c2e67e Backed out changeset 74dacf9ea7d4 (bug 985777) for m-bc bustage on a CLOSED TREE 2014-03-20 17:27:42 -07:00
Wes Kocher
32c7f8533d Backed out changeset 37d19c0c4411 (bug 940844) for a build failure 2014-03-20 16:21:32 -07:00
Matthew Noorenberghe
83652b3eef Bug 885139 - Notify consumers about LWT optimization and listen for it in LightweightThemeListener. r=jaws
[Australis]
2014-03-20 13:55:49 -07:00
Gijs Kruitbosch
03c7429095 Bug 985777 - always allow internal switchToTabHavingURI to switch to other windows, including private ones, r=dao 2014-03-20 13:53:46 +00:00
Gijs Kruitbosch
aed2a0cea9 Bug 983770 - fix scrollbars in overflow panel when zoom or edit controls overflow, r=mikedeboer 2014-03-21 13:19:36 +00:00
Matthew Noorenberghe
090d369a96 Bug 985786 - [10.6] Make the button to leave fullscreen match the styles of other toolbarbuttons and fix its missing image. r=mconley 2014-03-20 03:06:41 -07:00
Thomas Andersen
d280704ee2 Bug 859059 - Implement "Copy as curl". r=msucan, r=vp 2014-03-20 02:02:08 +01:00
Marco Castelluccio
9420586f86 Bug 970495 - [Session Restore] Switch SessionFile.read() to use the native OS.File read(). r=Yoric 2014-03-24 09:11:36 -04:00
Marco Bonardo
f2ab276e4d Bug 983571 - browser.bookmarks.autoExportHTML = true no longer works. r=Yoric 2014-03-22 14:26:52 +01:00
Marco Bonardo
f158c5459a Bug 959576 - Create a component to get the list of priority domains. r=gavin 2014-03-22 14:24:36 +01:00
Gijs Kruitbosch
2517313305 Bug 986769 - bug 940038 caused a JS error when opening the character encoding view, rs=firebot 2014-03-22 10:00:10 +00:00
Gijs Kruitbosch
204cf554a8 Bug 985777 - add a whitelist for URLs that we can switch to/from private browsing windows, r=ehsan
--HG--
extra : rebase_source : ab3d48e8fdc569f56118ad3fd518411733ff757b
2014-03-21 23:30:03 +00:00
Phil Ringnalda
6d264bafac Bug 982359 - Increase timeout for browser_net_filter-02.js to avoid it failing on Ubuntu 2014-03-21 18:57:50 -07:00
Wes Kocher
01b742c048 Merge m-c to fx-team 2014-03-21 18:00:14 -07:00
Aleh Zasypkin
10f96940b5 Bug 984004 - Part 2: Immediately update %label on reset. r=felipc 2014-03-19 10:25:17 +01:00
Thomas Andersen
c49d1449cb Bug 859059 - Implement "Copy as curl". r=msucan, r=vp 2014-03-20 02:02:08 +01:00
Mike de Boer
15029341a9 Bug 984976: fix menu-button border states on Windows 8. r=gijs 2014-03-20 16:15:24 +01:00
Stephen Horlander
5f16b172de Bug 940844 - Update Sync Progress Icon, r=jaws 2014-03-18 14:10:00 +00:00
Stephen Horlander
4aa66f7cb7 Bug 940844 - Update Sync Progress Icon, r=jaws 2014-03-18 14:10:00 +00:00
Gijs Kruitbosch
ecde861719 Bug 981305 - don't insert leading or duplicate separators, r=mconley 2014-03-21 17:02:41 +00:00
Brian Grinstead
fdc836557c Bug 983933 - Get better colors for the Inspector's box model;r=vporof 2014-03-18 08:04:57 -05:00
Brian Grinstead
8df1a47b24 Bug 983933 - Use shared CSS file for inspector box model;r=vporof 2014-03-17 10:11:35 -05:00
Benjamin Smedberg
725e70e6d1 Bug 985682 - Experiment IDs aren't loaded correctly from the cache. Tests will be separate, r=gfritzsche 2014-03-20 11:19:19 -04:00
Benjamin Smedberg
41fe25a964 Bug 985089 - Allow QA to set a pref to control experiment sampling values, r=felipe 2014-03-20 11:19:19 -04:00
Alexandre Poirot
d488948063 Bug 985555 - Prevent creating multiple markup view iframes when browsing in history. r=bgrins 2014-03-20 09:33:18 -04:00
Girish Sharma
cbbee25e7e Bug 984141 - Style editor should suggest valid CSS values without need of typing an initial character - exception fix. r=harth 2014-03-20 11:45:42 +05:30
Joel Maher
9c493520d5 Bug 970240 - Disable browser_inspector_markup_edit_outerhtml.js on Linux debug. r=bgrins 2014-03-20 09:33:15 -04:00
Carsten "Tomcat" Book
b4df3ca4bb Merge mozilla-central to fx-team 2014-03-20 14:29:02 +01:00
Mihai Sucan
d544fb9b67 Bug 982627 - Fix for intermittent browser_webconsole_bug_580030_errors_after_page_reload.js | Timed out while waiting for: error message after page reload; r=me 2014-03-20 15:16:58 +02:00
Carsten "Tomcat" Book
d64f1c6c14 merge fx-team to mozilla-central 2014-03-20 14:04:58 +01:00
Mihai Sucan
830923eeac Bug 982231 - Fix for intermittent browser_console_variables_view.js | Timed out while waiting for: property deleted; r=me 2014-03-20 14:44:06 +02:00
Mihai Sucan
20d538d585 Bug 969724 - Fix for intermittent browser_webconsole_bug_597136_external_script_errors.js | Timed out while waiting for: external script error message; r=me 2014-03-20 14:29:54 +02:00
Paolo Amadini
c8a4d98ada Bug 985318 - Convert to Promise.jsm in the Toolkit "content" folder. r=mak 2014-03-20 11:04:37 +01:00
Shane Caraveo
7b78f1d0ec Bug 984628 fix social button states, r=markh 2014-03-20 00:57:33 -07:00
Shane Caraveo
4d0e5c39c9 Bug 984535 fix social button styling, r=Gijs 2014-03-19 19:03:43 -07:00
Robert Strong
2b5f53de81 Bug 899352 - Increase the installation timeout for the stub installer. r=bbondy 2014-03-19 18:32:46 -07:00
Robert Strong
773406757f Bug 899363 - Implement stub installer data ping version 6. r=bbondy 2014-03-19 18:32:39 -07:00
Robert Strong
46ee25d31e Bug 899254 - When installing on top of an existing install the install page should use the term 'Upgrading' instead of 'Installing' for the stub installer. r=bbondy 2014-03-19 10:40:17 -07:00
Robert Strong
e2dc3282a6 Bug 799215 - Stub installer's dual progress bars are confusing. Use a single progress bar for both. ui-r=philipp, r=bbondy 2014-03-19 10:40:04 -07:00
Ehsan Akhgari
8259bd86d3 Bug 983845 - Port nsIFeedWriter to WebIDL and stop exposing BrowserFeedWriter to the Web; r=bzbarsky
X-Git-Commit-ID: 487d201e67d932da2d4a73b680181072a13e35b3
2014-03-19 12:29:00 -04:00
Ehsan Akhgari
ed0b551281 Bug 866528 - Make nsIDOMActivityOptions a dictionary; r=bzbarsky 2014-03-18 00:38:36 -04:00
Tim Taubert
37be7ec97e Bug 495123 - Save an empty window state if it's the last window closed and there were no others closed in series before r=smacleod 2014-03-08 06:22:20 +01:00
Gijs Kruitbosch
30501edbed Bug 985815 - propagate collapsed state to other windows, add test. r=jaws 2014-03-20 22:22:12 +00:00