Commit Graph

9498 Commits

Author SHA1 Message Date
Gijs Kruitbosch
0942bebcc0 Bug 305085 - fix permitUnload usages in tab/window closing so we never show a permitUnload twice for the same page, r=jaws 2014-12-04 18:10:12 -08:00
Wes Kocher
948c30703f Merge fx-team to m-c a=merge 2015-01-13 17:44:56 -08:00
Gijs Kruitbosch
4ef490ab06 Bug 1113299 - hide tab mirroring feature if unavailable, r=jaws 2014-12-22 15:05:06 +00:00
JW Wang
6e1b040e3a Bug 1111788 - Part 1 - include timestamps for "browser:purge-session-history" notification. r=gavin. 2015-01-08 18:50:00 +01:00
Wes Kocher
8025281b09 Merge m-c to inbound a=merge
--HG--
rename : toolkit/components/places/tests/expiration/test_removeAllPages.js => toolkit/components/places/tests/expiration/test_clearHistory.js
rename : toolkit/components/places/tests/unit/test_history_removeAllPages.js => toolkit/components/places/tests/unit/test_history_clear.js
extra : rebase_source : 07ea424f44b029b061b0ee863312dff179c760d3
2015-01-21 16:25:22 -08:00
Tooru Fujisawa
a627b97e35 Bug 1115616 - Part 2: Commit composition string forcibly when search suggestion list is clicked in about:home. r=adw 2015-01-22 07:21:21 +09:00
Carsten "Tomcat" Book
738b922077 Backed out changeset 8ab6c26d26f5 (bug 1118618) 2015-01-13 08:43:32 +01:00
Bill McCloskey
1b1c057069 Bug 1118618 - [e10s] Slow script/plugin hang UI (r=mrbkap,mconley) 2015-01-12 23:06:54 -08:00
Birunthan Mohanathas
aae23211c4 Bug 1093101 - Use user-set browser.newtab.url pref for new tabs in private windows. r=dao 2015-01-13 06:41:15 +02:00
Dave Townsend
6f42a65173 Bug 1118135: Clicking the magnifying glass while the suggestions are open should close the popup and not re-open it. r=felipe
The popup gets closed when native events trigger rollup. This is before the any
mousedown event reaches the DOM so it is difficult to detect the case where it
was a click on the magnifying glass icon that closed the popup. Here a field
is added to the popup that is set to true when rollup is triggered and false
on the next tick of the event loop which will be after the mousedown event
reaches the DOM. This allows us to detect the case and ignore the click on the
magnifying glass.

--HG--
extra : rebase_source : 521d024b33011d0f501a5cd6a1317363f585ffed
2015-01-06 11:05:32 -08:00
Carsten "Tomcat" Book
64250a3a9f Merge mozilla-central to fx-team 2015-01-12 15:15:24 +01:00
Carsten "Tomcat" Book
a95e320814 merge fx-team to mozilla-central a=merge 2015-01-12 13:01:26 +01:00
Paolo Amadini
fcc0d2239f Bug 1114614 - Remove nsIDownloadManagerUI from Firefox for Desktop. r=mak 2015-01-12 12:49:06 +00:00
Abdelrhman Ahmed
7899af9e6e Bug 1109854 - Fix the string displayed above the one-off search buttons whwhen the search field is empty, r=florian. 2015-01-11 20:51:11 +01:00
Dão Gottwald
9950dcda56 Bug 1115307 - Search bar alignment fixes and cleanup. r=florian
--HG--
extra : rebase_source : 18c3eacd8e946f17d2b18fcc42ec3873d666310d
2015-01-09 19:00:51 +01:00
Neil Deakin
e4fc31f0ac Bug 1089005, add a third consume option that never consumes even over the anchor. This allows clicks on the location field to adjust the caret position, r=dao 2015-01-09 21:12:10 -05:00
Masatoshi Kimura
e22607aacf Bug 1113780 - Use SSL_ERROR_UNSUPPORTED_VERSION for SSLv3 error page. r=gijs 2015-01-09 06:23:00 +00:00
Carsten "Tomcat" Book
91d1296031 Merge mozilla-central to fx-team 2015-01-09 15:51:09 +01:00
Carsten "Tomcat" Book
e478167826 merge fx-team to mozilla-central a=merge 2015-01-09 14:16:30 +01:00
Blair McBride
8f17fda978 Bug 1094567 - Remove the star for non-bookmark behavior. r=paolo 2015-01-08 22:38:48 +13:00
Wes Kocher
529fc3ce40 Merge mozilla-central to fx-team a=merge 2015-01-08 17:17:13 -08:00
Wes Kocher
6991bac6f9 Merge fx-team to mozilla-central a=merge 2015-01-08 16:58:52 -08:00
Drew Willcoxon
98f17cde03 Bug 1112440 - Make the infobar update correctly to reflect "needs verified user" on about:accounts during Sync migration. r=markh 2015-01-08 09:28:55 -08:00
Neil Deakin
5f6fe195ec Bug 1088540, fix email link for content processes, r=gijs 2015-01-07 20:52:20 -05:00
Dave Townsend
4432095fd7 Bug 1094312: Fix browser_bug553455.js:test_cancel_restart by pausing the download for long enough for the progress notification to show reliably. r=Gijs
test_cancel_restart needs the progress notification to show reliably so it can
cancel the pending install. To ensure this a sjs script is used to
asynchronously deliever the XPI data. It starts responding but sends no data
until a second request is made to tell it to complete. So the test can start
the install, then do what it likes with the progress dialog before finally
telling the server to complete the download for the install.

--HG--
extra : rebase_source : 9bd5c617a28ee4edaa8e18599ad8eca0b52f7133
2014-12-26 14:06:43 -08:00
Dave Townsend
07d61c444d Bug 1094312: Fix browser_bug553455.js to handle the cases where the progress notification is hidden before it has fully appeared. r=Gijs
This test includes a race condition between showing the install progress
doorhanger and the XPI download completing. When the download completes before
the popup finishes showing (there is some animating going on there) the popup
is hidden and never shows properly, the test promptly breaks. Something about
the e10s support changes made this far more frequent.

This change makes us only listen for the popupshowing event for progress
notifications and then move on to wait for the following notification or dialog
that we care about after that.

test_cancel_restart is the exception that actually needs to interact with the
progress dialog so it is disabled here and will be fixed in a separate change.

--HG--
extra : rebase_source : 2a1d8c1b89a88275e37f6ecb6e13afeac0e98f8f
2014-12-26 09:05:42 -08:00
Dave Townsend
87c71b8022 Bug 1094312: Properly destroy browsers when switching between remote and non-remove pages and override the default destroy method in remote-browser.xml. r=mconley
In some cases removing an element from a document doesn't call its XBL
constructor. tabbrowser knows this and so calls a destroy method on browser
elements when removing them.

When remote-browser was added we forgot to add a specific destroy method so the
base browser binding's would be used. This would mean remote-browsers aren't
being destroyed correctly.

Also when we switch from remote to non-remote browsers or vice versa we don't
call the destroy method at all so sometimes the browser isn't destroyed properly
and observer notifications get fired on dead browser elements.

--HG--
extra : rebase_source : d54ca85d912fdd736495c500910ff51fb5e15b6a
2014-12-29 17:09:52 -08:00
Carsten "Tomcat" Book
c854a16b1a Backed out changeset c5feceed953a (bug 1094567) 2015-01-08 12:17:20 +01:00
Blair McBride
903ddf9633 Bug 1094567 - Remove the star for non-bookmark behavior. r=paolo 2015-01-08 22:38:48 +13:00
Gijs Kruitbosch
fd419f1b69 Bug 1098371 - create localized version of sslv3 error page, r=mconley
--HG--
extra : rebase_source : 4aaa3e4b7a2de50d0c4e9ec47aa347d3d04b871c
2014-12-19 20:10:56 +00:00
Sai Prathik
d214a5b522 Bug 1118768 - Redundant PopupNotifications.transitionsEnabled code removed, r=gijs 2015-01-08 23:56:00 +00:00
Mark Goodwin
8532a88103 Bug 1096197 - Ensure SSL Error reports work when there is no failed certificate chain. r=keeler
--HG--
rename : browser/base/content/test/general/browser_bug846489.js => browser/base/content/test/general/browser_ssl_error_reports.js
rename : browser/base/content/test/general/browser_bug846489_content.js => browser/base/content/test/general/browser_ssl_error_reports_content.js
2015-01-07 02:28:00 -05:00
Chris
385cde08ce Bug 1117153 - Added 'keyword' param for location bar searches triggered by search engine keyword. r=gavin 2015-01-04 17:14:26 -08:00
Blake Winton
04323c7981 Bug 1102937 - Add UITelemetry for the improved search bar UI. r=florian, r=felipe 2015-01-06 13:09:43 -05:00
Mark Hammond
ecc0c95902 Bug 1117033 - all sync migration states in the hamburger menu take us to Sync prefs. r=adw 2015-01-07 13:57:38 +11:00
Mark Hammond
56a6091ae8 Bug 1114445 - update sync migration flows to reflect latest requirements. r=adw 2015-01-07 13:57:38 +11:00
Tim Taubert
6cd4f30812 Bug 1008029 - Fix intermittent browser_newtab_update.js failures r=Gijs 2014-11-14 20:21:17 +01:00
Blair McBride
22433fc4ac Bug 1099046 - Autocomplete popup displays "moz-action:searchengine,..." for keyword searches while pressing Shift. r=mak 2015-01-06 19:13:46 +13:00
Blair McBride
099b9e9b54 Bug 1098071 - Move uitour.js library out of test directory. r=MattN
--HG--
rename : browser/modules/test/uitour.js => browser/components/uitour/UITour-lib.js
rename : browser/modules/UITour.jsm => browser/components/uitour/UITour.jsm
rename : browser/base/content/content-UITour.js => browser/components/uitour/content-UITour.js
rename : browser/modules/test/browser_UITour.js => browser/components/uitour/test/browser_UITour.js
rename : browser/modules/test/browser_UITour2.js => browser/components/uitour/test/browser_UITour2.js
rename : browser/modules/test/browser_UITour3.js => browser/components/uitour/test/browser_UITour3.js
rename : browser/modules/test/browser_UITour_annotation_size_attributes.js => browser/components/uitour/test/browser_UITour_annotation_size_attributes.js
rename : browser/modules/test/browser_UITour_availableTargets.js => browser/components/uitour/test/browser_UITour_availableTargets.js
rename : browser/modules/test/browser_UITour_detach_tab.js => browser/components/uitour/test/browser_UITour_detach_tab.js
rename : browser/modules/test/browser_UITour_loop.js => browser/components/uitour/test/browser_UITour_loop.js
rename : browser/modules/test/browser_UITour_modalDialog.js => browser/components/uitour/test/browser_UITour_modalDialog.js
rename : browser/modules/test/browser_UITour_observe.js => browser/components/uitour/test/browser_UITour_observe.js
rename : browser/modules/test/browser_UITour_panel_close_annotation.js => browser/components/uitour/test/browser_UITour_panel_close_annotation.js
rename : browser/modules/test/browser_UITour_registerPageID.js => browser/components/uitour/test/browser_UITour_registerPageID.js
rename : browser/modules/test/browser_UITour_resetProfile.js => browser/components/uitour/test/browser_UITour_resetProfile.js
rename : browser/modules/test/browser_UITour_sync.js => browser/components/uitour/test/browser_UITour_sync.js
rename : browser/modules/test/head.js => browser/components/uitour/test/head.js
rename : browser/modules/test/image.png => browser/components/uitour/test/image.png
rename : browser/modules/test/uitour.html => browser/components/uitour/test/uitour.html
2015-01-06 19:13:46 +13:00
Gavin Sharp
cf4a2cbe84 Bug 1115696: fix browser_aboutHome.js to work correctly with inContent prefs enabled/disabled, r=mak
--HG--
extra : rebase_source : 32f8ce678741f5f92fe9e997eca8d575694ae5b0
2015-01-05 07:59:12 -08:00
Ehsan Akhgari
80fc5b9947 Bug 1116669 - Wait for focus before running test_offlineNotification.html; r=dao 2015-01-03 12:25:48 -05:00
Dave Townsend
3bd65ce688 Bug 1102050: Set consumeoutsideclicks="false" whenever the popup is opened. r=felipe
showHistoryPopup in autocomplete.xml always sets consumeoutsideclicks to true
so we have to override that when the popup is actually opened.

The test here isn't a very good one. For some reason the events generated by
EventUtils aren't consumed regardless of consumeoutsideclicks, I'm not sure
there is a great way to test this automatically.

--HG--
extra : rebase_source : 1e413c645cc0445089f0214a6d3b68365b47ca80
2014-12-31 13:36:28 -08:00
Paolo Amadini
17634166b8 Bug 432425 - Remove unused test for downloads in the Clear Recent History dialog. r=gavin 2014-12-30 21:05:12 +00:00
Paolo Amadini
5a4af1158c Bug 480169 - Remove unused tree view test for the Clear Recent History dialog. r=mak 2014-12-30 21:05:12 +00:00
Wes Kocher
8ce8626a85 Merge mozilla-central to inbound a=merge 2015-01-08 17:14:55 -08:00
Tom Schuster
6714d35a4b Bug 1110759 - Remove Iterator() from some tests. r=smaug 2015-01-08 19:58:45 +01:00
Gijs Kruitbosch
5e453d4256 Bug 1096319 2014-12-29 12:12:02 -08:00
Florian Quèze
2bdb92f14f Bug 881331 - PopupNotifications added in background windows should show their anchor icon, r=MattN. 2013-11-14 08:06:45 +05:30
Abdelrhman Ahmed
2c8bd551f7 Bug 1115038 - Ctrl-Tab panel's "Show all X tabs" button should read "List All X Tabs" instead. r=dao 2014-12-26 14:37:32 +01:00
Gijs Kruitbosch
9cf533e765 Bug 1079303 - part 2: fix tests to not expect sync behaviour from notification.reshow, r=dolske 2014-11-25 01:06:36 +00:00
Gijs Kruitbosch
9d09d5893f Backed out changeset c8f1dab5c9e5 (bug 305085) 2014-12-24 16:14:09 +00:00
Gijs Kruitbosch
26cae9daf2 Backed out changeset 618a0ea01af9 (bug 305085) 2014-12-24 16:14:07 +00:00
Gijs Kruitbosch
8b9af4190a Bug 305085 - fix permitUnload usages in tab/window closing so we never show a permitUnload twice for the same page, r=jaws
--HG--
extra : rebase_source : 29d6d43e3ee8d831b3debc97a1e12c422e5c0bb8
extra : histedit_source : cd3004e8f6da17acb8af122b0755bf85e3d8fb0c
2014-12-04 18:10:12 -08:00
Gijs Kruitbosch
dc86766fd3 Bug 305085 - add a test for beforeunload uses, r=jaws
--HG--
extra : rebase_source : 56f5d53be23a811d9a5eeec68a089824f538942b
extra : histedit_source : af42dfab71d3c56a54ff337b0c02e05dde856572
2014-12-19 21:41:57 +00:00
Alexander J. Vincent
870bfbac7a Bug 1108047 - Use instanceof instead of QueryInterface to reduce debugging exception noise. r=gavin 2014-12-08 15:09:03 -08:00
Michael Lopez
87fe2f5da1 Bug 1101162 - Delete replaceQueryString from aOpenParams since it is not used by openUILinkIn. r=jaws 2014-12-17 20:23:00 -05:00
Mike de Boer
1da84db6c1 Bug 1113723: play a sound when someone joins a room. r=MattN 2014-12-23 17:39:32 +01:00
Monica Chew
e7b74f2284 Bug 1114824: Fix TRACKING_PROTECTION_SHIELD (r=bmcbride) 2014-12-22 16:56:17 -08:00
Gijs Kruitbosch
a0332fd40b Bug 1104755 - really disable the test on Linux, implied-rs=mak 2014-12-23 12:21:20 +00:00
Florian Quèze
eeaf0c7548 Bug 1110678 - Re-implement Ctrl+up/down and Alt+up/down in the search field, r=felipe. 2014-12-23 02:12:36 +01:00
Shane Caraveo
acd3fa8369 Bug 1087934 Share panel UI updates, r=markh 2014-12-22 16:11:56 -08:00
Ryan VanderMeulen
093bfc2f39 Merge inbound to m-c. a=merge 2014-12-22 17:55:32 -05:00
abdelrhman
8a83ca2d3e Bug 1112552 - Clean up global-scope pollution from browser-fxaccounts.js. r=dao
--HG--
extra : rebase_source : 17c65f8c9f40df6e1cd49f07a779b71b002a5e23
2014-12-22 15:14:17 +01:00
Carsten "Tomcat" Book
7fff7844dd Backed out changeset 1dd103323b7c (bug 1112552) for bc1 bustage 2014-12-22 14:41:36 +01:00
Neil Deakin
f0e5d54215 Bug 1066383, rework custom html menu item handling to support contextmenu attribute in separate process, r=janv,mconley,peterv 2014-12-16 11:21:11 -05:00
abdelrhman
fc21ed37c1 Bug 1112552 - Clean up global-scope pollution from browser-fxaccounts.js. r=dao 2014-12-22 13:28:29 +01:00
Gijs Kruitbosch
6f2e58f479 Bug 1104755 - disable test on Linux only to avoid the very-frequent-orange, implied-rs=mak
--HG--
extra : rebase_source : bc91fc98dc395e701599e7bb04dd96dc29f12b8c
2014-12-22 00:13:16 +00:00
Blake Winton
81f134d608 Bug 1106432 - Allow search bar icon to indicate when a page offers OpenSearch. ui-r=shorlander, r=florian. 2014-12-18 15:25:21 -05:00
Phil Ringnalda
e2878ada9a Backed out 2 changesets (bug 1106432) for mochitest-a11y failures
CLOSED TREE

Backed out changeset 513130bd59ed (bug 1106432)
Backed out changeset 4dbb2ddd0093 (bug 1106432)
2014-12-20 17:58:08 -08:00
Blake Winton
5c65e92619 Bug 1106432 - Allow search bar icon to indicate when a page offers OpenSearch. ui-r=shorlander, r=florian. 2014-12-18 15:25:21 -05:00
Ryan VanderMeulen
84ddefdf5b Backed out changeset ded76f782c5e (bug 1106432) for leaks. 2014-12-19 16:54:30 -05:00
Blake Winton
06d5298caf Bug 1106432 - Allow search bar icon to indicate when a page offers OpenSearch. ui-r=shorlander, r=florian. 2014-12-18 15:25:21 -05:00
Shane Caraveo
3b568b9f3d Bug 1026444 fix error pages in social panels, r=markh 2014-12-19 12:41:09 -08:00
Gijs Kruitbosch
dd56c5b6a5 Backed out changeset eef487a50fb0 (bug 1079303)
--HG--
extra : rebase_source : 62c4e6effbf055472c0e7256a4f8882c0b95fa9c
2014-12-19 20:14:59 +00:00
Ryan VanderMeulen
a330fb5e95 Merge m-c to fx-team. a=merge 2014-12-19 15:13:27 -05:00
Ryan VanderMeulen
68a9b89f29 Merge inbound to m-c. a=merge 2014-12-19 15:03:54 -05:00
Felipe Gomes
cfb60b91f4 Bug 1106054 - Search dropdown should have a minimum width. r=florian 2014-12-19 00:40:38 -02:00
Dão Gottwald
4ca84d76cc Bug 647540 - Get rid of the toolbar-primary class. r=enn
--HG--
extra : rebase_source : 3b1bf2598d73f7242945e4296df947f66dbeaf0a
2014-12-18 23:31:39 +01:00
abdelrhman
a90df75828 Bug 1112556 - Ctrl-Tab previews are oversized with a small number of tabs open. r=dao
--HG--
extra : rebase_source : ec1e0f19a6c482ddb8ee65360b4656dfe7b905bd
2014-12-18 23:31:15 +01:00
Ryan VanderMeulen
d5376382a9 Backed out changeset 08d1470a4042 (bug 1112556) for mass test bustage.
CLOSED TREE
2014-12-18 15:52:57 -05:00
Ryan VanderMeulen
d504a5595c Backed out changeset 01f50f0fbda6 (bug 1112552) for mass test bustage.
CLOSED TREE
2014-12-18 15:52:49 -05:00
Ryan VanderMeulen
0e5ac0e24e Backed out changeset 326f890f61a5 (bug 647540) for mass test bustage.
CLOSED TREE
2014-12-18 15:49:07 -05:00
Dão Gottwald
15ca6db58e Bug 647540 - Get rid of the toolbar-primary class. r=enn
--HG--
extra : rebase_source : a42a4c583376dfa153bd4e7bae514646b35a6e22
2014-12-18 19:53:27 +01:00
abdelrhman
faff0183db Bug 1112552 - Clean up global-scope pollution from browser-fxaccounts.js. r=dao
--HG--
extra : rebase_source : 5eb7c7451e8b8a57a2ecac55a1b0404bb7ce66dc
2014-12-18 19:43:21 +01:00
abdelrhman
933a3a1116 Bug 1112556 - Ctrl-Tab previews are oversized with a small number of tabs open. r=dao
--HG--
extra : rebase_source : 1cb9531271538fcf6d842db56000e31cd21208d3
2014-12-18 19:38:58 +01:00
Felipe Gomes
b4a2fdceab Bug 1110235 - Clicking on the header region of the search dropdown should trigger a search with the default engine. r=florian 2014-12-18 14:08:17 -02:00
Gijs Kruitbosch
4032a04621 Bug 1079303 - part 2: fix tests to not expect sync behaviour from notification.reshow, r=dolske 2014-11-25 01:06:36 +00:00
Gijs Kruitbosch
6d94bb322d Bug 1108254 - fix hidpi icon in search, r=felipe
--HG--
extra : rebase_source : 764162314dc48b0a7669ebe41bfe58cd40dca062
extra : amend_source : 70bf1cb729cd114495f1a7fad40961e2c9801e01
2014-12-18 12:41:14 +00:00
Mark Hammond
4c79862df5 Bug 1109430 - Sync migrator module should show confirmation after resending verification email. r=adw 2014-12-18 16:14:58 +11:00
Matthew Noorenberghe
c715194576 Bug 1080953 - UITour: tell page when first incoming call is received and if that room window is open. r=dmose,dolske
--HG--
extra : rebase_source : de8a2b58aedc35fb07951736829cd43b8f1632fc
2014-12-17 22:37:19 -05:00
Blake Winton
947fa3c0c7 Bug 1106101 - Let people open searches in new tabs with ctrl/cmd+click or middle mouse button. ui-r=phlsa, r=florian 2014-12-17 15:23:44 -05:00
Heather Arthur
a0b8caf89e Bug 990741 - Add telemetry to eyedropper. r=mratcliffe 2014-12-17 11:04:00 -05:00
Michael Lopez
2d371a5979 Bug 963945 - Add about:addons URI as whitelisted so that it can be refocused instead of opening duplicate tabs in private browsing. r=jdm 2014-12-16 21:45:00 -05:00
Ryan VanderMeulen
d2ebc2ac1b Merge inbound to m-c. a=merge
CLOSED TREE
2014-12-17 20:53:20 -05:00
Paolo Amadini
afc20ecc87 Bug 1088508 - Update Loop button icon images and rendered size. r=jaws
--HG--
rename : browser/themes/windows/loop/toolbar-XPVista7.png => browser/themes/windows/loop/toolbar-aero.png
2014-12-17 20:42:29 +00:00
Dan Mosedale
5f6686adce Bug 1110507-Loop self-image can be cropped by scrolling out of view (privacy), r=jaws 2014-12-17 12:27:03 -08:00
Brad Lassey
8de57b4f58 bug 1112337 - desktop mirroring code passes null viewport r=mconley 2014-12-16 17:35:10 -05:00
Florian Quèze
1e09d65def Bug 1106876 - the one-click search header isn't updated immediately when the textfield value changes, r=felipe. 2014-12-17 20:25:52 +01:00
Dão Gottwald
be2b75345b Bug 1108555 - [e10s] closing last tab does not focus urlbar (browser.tabs.closeWindowWithLastTab = false). r=jimm,mconley 2014-12-17 18:17:38 +01:00
Florian Quèze
91396a9492 Bug 1107278 - Localize the new searchbar UI for Firefox 35 - remove duplicated code to match the code landed on beta, r=felipe. 2014-12-12 14:13:48 +01:00
Carsten "Tomcat" Book
6072d6a564 merge fx-team to mozilla-central a=merge 2014-12-17 12:50:10 +01:00
Felipe Gomes
140f3d9ba0 Bug 1094947 - The trusted identity block is not displayed for the about:downloads page. r=jaws
This patch was co-developed by members of the Mozilla Brasil community during a development workshop in our first ever community meetup. Thanks to Mauricio Araldi, Marcus Saad, Sergio Campos, Matheus Figueiredo, Gustavo Sillero, Antonio Ladeia, Caio Oliveira, Eduardo Barros, and Guillermo Movia for attending and contributing.
2014-12-16 20:36:43 -02:00
Dão Gottwald
c7094c4e62 Bug 1107354 - Rename browser-tabPreviews.js to browser-ctrlTab.js. r=jimm
--HG--
rename : browser/base/content/browser-tabPreviews.js => browser/base/content/browser-ctrlTab.js
2014-12-16 21:42:43 +01:00
Dão Gottwald
037afe3d91 Bug 1107342 - Ctrl-Tab should prevent a few more thumbnails from expiring than are displayed in the UI. r=jimm 2014-12-16 21:41:07 +01:00
abdelrhman
230f2f1689 Bug 1110109 - Use Services.focus instead of Cc["@mozilla.org/focus-manager;1"].getService(Ci.nsIFocusManager). r=dao 2014-12-16 21:38:33 +01:00
Nathan Froyd
18656f5924 Bug 1031264 - make opening links in new {tabs,windows} honor rel="noreferrer"; r=mconley 2014-12-10 12:42:18 -05:00
Georg Fritzsche
4fb9344cf5 Bug 1101491 - Properly record SEARCH_DEFAULT_ENGINE on search service init and change events. r=mconley 2014-12-16 18:10:28 +01:00
Brad Lassey
584f791170 bug 1088758 - Add the ability to mirror tabs from desktop to a second screen r=mconley, mfinkle 2014-12-15 18:52:55 -05:00
Vikneshwar
d02a071da5 Bug 1038599 - Called OpenLinkIn from loadURI;r=dao
--HG--
extra : rebase_source : 3ff46f5e5ed34e6059331616ae2735d7a3cdf3be
2014-12-15 22:08:16 +01:00
Thejdeep
c68ee51e36 Bug 1111275 - Replace gBrowser.mCurrentBrowser with gBrowser.selectedBrowser. r=dao
--HG--
extra : rebase_source : 8a8ef5fafbdbddf987eb69407444b3a2edc1be19
2014-12-15 22:07:18 +01:00
abdelrhman
605c00590b 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
2c0d6e00d9 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
Ankit Goyal
d8c264deb7 Bug 1110069 - Replace getBrowser() with gBrowser in /browser. r=dao 2014-12-11 21:48:00 -05:00
Carsten "Tomcat" Book
b52700be7d Backed out changeset bc169301ff47 (bug 1015163) for bc1/bc2 test failures 2014-12-12 13:15:45 +01:00
Carsten "Tomcat" Book
b99c181926 Backed out changeset 85a89a0a4c1c (bug 1110069) 2014-12-12 13:14:57 +01:00
Ankit Goyal
99c97ab78d Bug 1110069 - Replace getBrowser() with gBrowser. r=dao
--HG--
extra : rebase_source : 4db6c01d37ea4e38e94f70a677c5d31decd22f72
2014-12-12 10:40:23 +01:00
Dão Gottwald
2c800eb681 Bug 1015163 - Always show the menu button in popup windows. r=gijs,enn
--HG--
extra : rebase_source : 942adb801c3261cdfc23a7d9f57321206c5e22d4
2014-12-10 16:35:50 +01:00
Drew Willcoxon
83771e4dec Bug 1016825 - Show legacy-Sync-to-Firefox-Accounts migration notifications in the main browser window. r=markh 2014-12-11 21:06:55 -08:00
Matthew Noorenberghe
7aab8e3a93 Bug 1104927 - UITour: Add Loop conversation view target for email/copy link buttons. r=Unfocused,mixedpuppy 2014-12-11 21:05:54 -08:00
Tim Taubert
c60b8e95b0 Bug 1077652 - Remove old BrowserNewTabPreloader.jsm and references r=jaws 2014-11-19 16:21:07 +01:00
Tim Taubert
b747c7cdce Bug 1077652 - Update browser_newtab_background_captures.js to work with the new preloader r=adw 2014-11-19 16:21:22 +01:00
Tim Taubert
375ca18672 Bug 1077652 - Introduce new preloading mechanism r=dao 2014-11-19 16:23:49 +01:00
Gijs Kruitbosch
fa1410e8c7 Bug 1043584 - fix mouseover vs. enter issue in the urlbar, r=mak
--HG--
extra : rebase_source : a44d3e897a6ae930119fff45b6babc7a0ad8bcbb
2014-12-02 15:52:26 -08:00
Tim Taubert
d78b2dfadf Bug 1073339 - Convert from CRLF to LF for autocomplete tests r=Unfocused 2014-11-28 12:03:34 +01:00
Tim Taubert
7ca7b0022e Bug 1073339 - Enable autocomplete tests for Linux and e10s r=Unfocused 2014-12-11 19:06:14 +01:00
Matthew Noorenberghe
26aec3e5ad Bug 1111013 - Add aOpenParams.ignoreQueryString to switchToTabHavingURI to ignore query params without replacing. r=dolske
--HG--
rename : browser/base/content/test/general/browser_bug1025195_switchToTabHavingURI_ignoreFragment.js => browser/base/content/test/general/browser_bug1025195_switchToTabHavingURI_aOpenParams.js
extra : rebase_source : 201b4ff0e007045d73884de51a8f6574a82c1e64
2014-12-16 01:26:24 -08:00
Chris Peterson
91e979cfbc Bug 1113032 - Replace deprecated expression closures in about:newtab with real functions. r=ttaubert 2014-12-16 19:14:12 -08:00
Bill McCloskey
ec264bed94 Bug 1109372 - Stop using CPOWs for isTabEmpty (r=dao) 2014-12-18 17:34:25 -08:00
Bill McCloskey
9a33dcc272 Bug 1072980 - Don't pass document CPOW to context menu (r=ally) 2014-12-18 17:34:24 -08:00
Florian Quèze
2a51f9bf4a Bug 1106942 - Search suggestions are read as 'Unknown' in the new search UI, r=Gijs. 2014-12-09 18:00:00 +01:00
Shane Caraveo
fc4dce4cb8 Bug 1090633 fix intermittent failure, r=markh 2014-12-10 14:53:43 -08:00
Shane Caraveo
57afc8ed1c Bug 1098437 fix handling of webrtc messages in chat window, r=markh,florian 2014-12-10 14:47:46 -08:00
Shane Caraveo
7c6be7e359 Bug 1108998 add label to share provider buttons, r=Gijs 2014-12-10 14:38:40 -08:00
Drew Willcoxon
feac183095 Bug 1026342 - Show legacy-Sync-to-Firefox-Accounts migration indicators in the app menu panel. r=markh 2014-12-10 09:33:36 -08:00
Gijs Kruitbosch
430634d902 Bug 1105768 - fix sometimes not showing label on update button because XBL binding isn't attached, r=ally 2014-12-09 00:51:20 +00:00
Tim Nguyen
c63b35f80a Bug 738646 - Show apps button by default on about:home and remove hidden pref related to it. r=jaws 2014-12-05 15:46:00 -05:00
Gijs Kruitbosch
a58af6b3c0 Bug 1099095 - delay checking webrtc window until it closes, r=florian
--HG--
extra : rebase_source : a80d27b122ab2d62215cc79f98532e7c9b332370
2014-12-05 16:14:11 -08:00
Carsten "Tomcat" Book
23b15dcbbd merge fx-team to mozilla-central a=merge 2014-12-09 13:08:37 +01:00
Ryan VanderMeulen
ec587e4cfb Merge m-c to fx-team. a=merge 2014-12-08 15:48:03 -05:00
Mike Conley
b022abda10 Bug 1053981 - use the popup-scrollbars binding for <select> dropdowns in e10s windows. r=ally 2014-12-05 13:10:48 -08:00
Dão Gottwald
7c66585d34 Bug 1106239 - Fix up the styling for about:home's and about:newtab's search panel and about:newtab's customize panel. r=felipe 2014-12-05 12:37:42 -08:00
Dão Gottwald
1bb48df2e6 Bug 1059600 - Set the URI as the initial tab label for javascript links opened in new tabs. r=gijs
--HG--
extra : rebase_source : 3a28661f42daa9ec6243234d9d1eaf8b01055e32
2014-12-05 09:42:56 -08:00
Phil Ringnalda
56e90833e7 Backed out 5 changesets (bug 1077652) for a11y bustage
CLOSED TREE

Backed out changeset eda93688e4b5 (bug 1077652)
Backed out changeset 00bdefd9c4fa (bug 1077652)
Backed out changeset 31c163560ed4 (bug 1077652)
Backed out changeset afd5df8ab5af (bug 1077652)
Backed out changeset 884ce04c007f (bug 1077652)
2014-12-04 21:12:35 -08:00
Phil Ringnalda
e559aaed0a Back out 5d5425acf620 (bug 1059600) for bc1 bustage
CLOSED TREE
2014-12-04 21:09:22 -08:00
Blair McBride
a53ea4c320 Bug 1105911 - Can't arrow back into location bar once the autocomplete popup has been shown by arrowing down. r=mak 2014-12-04 15:31:30 +13:00
Blair McBride
10167b23c8 Bug 1101825 - Create UITour event framework. r=MattN 2014-12-05 14:50:45 +13:00
Matthew Noorenberghe
a6e4d63bb2 Bug 1104921 - UITour: Add Loop panel targets. r=Unfocused
--HG--
extra : rebase_source : eb46c50e68be3dbac8e7d6ba6f1dc01385190722
2014-12-04 14:40:03 -08:00
Tim Taubert
192a1fcc8a Bug 1077652 - Remove old BrowserNewTabPreloader.jsm and references r=jaws 2014-11-19 16:21:07 +01:00
Tim Taubert
eaff616ed7 Bug 1077652 - Update browser_newtab_background_captures.js to work with the new preloader r=adw 2014-11-19 16:21:22 +01:00
Tim Taubert
ddd5a4d399 Bug 1077652 - Introduce new preloading mechanism r=dao
From 2a6aa472f666aecc076b9c072c48d1d7ac991790 Mon Sep 17 00:00:00 2001
2014-11-19 16:23:49 +01:00
Dão Gottwald
523a81c6dc Bug 1105579 - increase browser_lastAccessedTab.js error tolerance further
--HG--
extra : rebase_source : ae86e46ae659fc797cf8f20ae8c909f0a2f3cee9
2014-12-04 17:03:43 -08:00
Dão Gottwald
66dfd71524 Bug 1106238 - about:home search icon has a solid background, should be transparent. r=felipe
--HG--
extra : rebase_source : 4683852f44862f9bd3dee83669aeb9ebb4fe41dd
2014-12-04 20:38:12 +01:00
Dão Gottwald
9705b4b50b Bug 1059600 - Set the URI as the initial tab label for javascript links opened in new tabs. r=gijs
--HG--
extra : rebase_source : 07dfeabaf245f791300415df3f072ded5c4fdd81
2014-12-03 23:44:36 +01:00
Wes Kocher
4f38e5819e Backed out 2 changesets (bug 1060529) for introducing a new intermittent bc1 orange
Backed out changeset 5ddd9eb25925 (bug 1060529)
Backed out changeset d4f962fb38be (bug 1060529)
2014-12-08 16:40:55 -08:00
Matthew Noorenberghe
d34880be7d Bug 1080943 - UITour: Allow opening the Hello panel. r=Unfocused 2014-11-30 21:46:23 -08:00
Chris Peterson
8a4a4a0b7d Bug 1105408 - Remove deprecated for-each-in loop in about:sync-tabs. r=mak 2014-11-25 23:51:03 -08:00
Chris Peterson
162132faa4 Bug 1105406 - Remove deprecated for-each-in array comprehension in about:newtab. r=adw 2014-11-25 23:45:45 -08:00
Phil Ringnalda
12ad324115 Merge f-t to m-c, a=merge 2014-11-28 14:52:29 -08:00
Phil Ringnalda
16fe33dee0 Merge m-i to m-c, a=merge 2014-11-28 14:33:15 -08:00
Gavin Sharp
e3067617e9 Bug 1102416: make Yahoo the default search plugin for en-US in American time zones, r=dolske, a=me 2014-11-23 20:38:22 -08:00
Felipe Gomes
592d91068e Bug 1101147 - Update about:newtab search styling. r=Mossop 2014-11-24 08:40:22 -02:00
Dave Townsend
92c7f87053 Bug 1101122 - Update about:home search styling. r=felipe 2014-11-24 08:40:22 -02:00
Phil Ringnalda
341e5aef60 Merge m-c to f-t 2014-11-27 17:45:52 -08:00
Phil Ringnalda
50cdf9a046 Merge f-t to m-c, a=merge 2014-11-27 17:33:42 -08:00
Mike de Boer
91e4f3c7a7 Bug 1074667: Generate system alert when someone joins a room. r=MattN 2014-11-27 12:41:41 +01:00
Dão Gottwald
53bbcc677b Bug 1105579 - increase browser_lastAccessedTab.js error tolerance, DONTBUILD 2014-11-27 16:16:16 +01:00
Dão Gottwald
7d751d7ae2 Bug 980231 followup: speed up browser_lastAccessedTab.js 2014-11-27 15:22:21 +01:00
Florian Quèze
f139935d1a Bug 1103190 - land Flare strings in Firefox 36, r=felipe. 2014-11-27 12:24:53 +01:00
Carsten "Tomcat" Book
2c27abd4d3 Merge mozilla-central to mozilla-inbound 2014-11-27 17:03:44 +01:00
Neil Deakin
d7fab6a6dd Bug 1072342, propagate the window activation state down to child process windows, r=smaug,mstange 2014-11-27 08:28:26 -05:00
Ryan VanderMeulen
e3a273a5bf Merge m-c to fx-team. a=merge 2014-11-26 21:44:26 -05:00
Ryan VanderMeulen
d8461340ac Merge fx-team to m-c. a=merge 2014-11-26 21:08:54 -05:00
Ryan VanderMeulen
1ac5f2eafb Merge inbound to m-c. a=merge 2014-11-26 20:34:29 -05:00
Marco Bonardo
e5f59d060e bug 1105456 (follow-up) Make autocomplete tests not hit the new "failure on no test" behavior, so we can merge to Aurora too. r-irc=Unfocused a=bustage on CLOSED TREE 2014-11-27 00:41:50 +01:00
Florian Quèze
c3f11aae26 Bug 1104748 - A long default search provider name can mess up the layout of the one-off buttons when the panel is small, r=felipe. 2014-11-25 20:13:12 +01:00
Florian Quèze
84f5bfb056 Bug 1104221 - Search drop down shows the icon of the previous default engine if the new default doesn't have an icon. r=felipe 2014-11-24 20:24:19 +01:00
Dave Townsend
e094a24942 Bug 1103119: Search drop down fails to display properly if a search engine has no icon. r=felipe 2014-11-21 13:04:24 -08:00
Dave Townsend
bd0d6b5aff Bug 1101654: First use tour for search UI. r=felipe 2014-11-20 15:27:10 -08:00
Florian Quèze
a7e6668f97 Bug 1088660 - Improve the search bar UI to support one-off searches - improve discoverability of the search settings, r=felipe. 2014-11-20 20:55:41 +01:00
Florian Quèze
1076501bfb Bug 1088660 - Improve the search bar UI to support one-off searches, r=felipe. 2014-11-18 00:59:11 +01:00
Dão Gottwald
d06778dbd3 Bug 1105579 - Add fuzz to browser_lastAccessedTab.js 2014-11-27 12:18:29 +01:00
Gijs Kruitbosch
4f20c88c28 Bug 1101624 - use dummy page instead of about:blank to avoid a race, r=mconley
--HG--
extra : rebase_source : c4857c425e10096c30dfe01af7ea99f2a8c69c8e
2014-11-26 23:52:50 +00:00
Gijs Kruitbosch
6345cfae6e Bug 1100914 - switch telemetry to use an array of strings to indicate all states, r=jaws,f=bwinton 2014-11-20 16:07:46 +00:00
Tim Taubert
697563e1b5 Bug 1075450 - Rename tests (part 2/2) r=mak
--HG--
rename : browser/base/content/test/general/browser_bug816527.js => browser/base/content/test/general/browser_tabMatchesInAwesomebar_perwindowpb.js
2014-11-21 23:40:33 +01:00
Tim Taubert
17e108c0cd Bug 1075450 - Rename tests (part 1/2) r=mak
--HG--
rename : browser/base/content/test/general/browser_tabMatchesInAwesomebar_perwindowpb.js => browser/base/content/test/general/browser_tabMatchesInAwesomebar.js
2014-11-21 23:39:11 +01:00
Tim Taubert
d9d3a3f9c0 Bug 1075450 - Disable some Awesomebar actions for private windows r=mak 2014-11-21 23:39:44 +01:00
Mike Conley
65b0f9a470 Bug 963358 - [e10s] Crashed tab page's Try Again button doesn't always work. r=billm.
Instead of attaching / listening for click events in BrowserOnClick for the
Try Again button, we instead bubble up an event when the Try Again button
is clicked. That event has a listener set up for it that is established during
delayedStartup, so it has a very high probability of being set. This bypasses
some error cases where we hadn't successfully attached BrowserOnClick in the past.

--HG--
extra : rebase_source : 19c7d7157a8bd24a1a39bda4072d7c01cd398756
2014-11-23 01:12:19 -05:00
Mark Hammond
3c43fe29b6 Bug 1017931 - allow about:accounts to be used even if legacy sync is configured. r=adw 2014-11-24 12:31:10 +11:00
Blair McBride
aad11360ba Bug 1060642 - Improve display of entries without a title in the Awesomebar. r=mak
--HG--
extra : transplant_source : %E5%0C%03N%1D%99%C4%F3%16MK%C1%E7%88%C5%A7%FE%0D%28%9B
2014-11-24 13:11:12 +13:00
Blair McBride
98bedf6b90 Bug 1067903 - Part 3: Update tests to deal with autoselect and textValue. r=mak
--HG--
extra : transplant_source : %27%23%DC/%3E%866%CB%AC%FD%87%8C%16hP%28%B8%04%F4O
2014-11-24 12:19:44 +13:00
Blair McBride
5d41aaee1e Bug 1067903 - Part 2: Change how we handle the real value vs the display value in the URLbar. r=mak
--HG--
extra : transplant_source : %B3%FC5wJ%CB%C2%29%22%B4%C4X%E2WJ%B2K%7D%B70
2014-11-24 12:19:04 +13:00
Blair McBride
5705fe9774 Bug 1067903 - Part 1: Autoselect first autocomplete result. r=mak
--HG--
extra : transplant_source : %99%88%02%D4%24%FA%01q%06%BC%D9%ACn%D1%13K%F60%1B%BA
2014-11-24 12:18:20 +13:00
Blair McBride
45d0aaa28a Bug 1070778 - Selecting a moz-action: result then typing more can result in "Search X for moz-action:..." item. r=mak
--HG--
extra : transplant_source : %82D%C62%20OSI%DBx%22%5C%FB%A6%606n%FE7%3D
2014-11-24 12:00:02 +13:00
Mike de Boer
d8e222083a Bug 1100284: also support detached chat windows in duplicate chat window handling. r=mixedpuppy 2014-11-21 15:47:56 +01:00
Wes Kocher
6a0d3fe8d3 Backed out 2 changesets (bug 1100284) for xpcshell orange
Backed out changeset c773c6be9270 (bug 1100284)
Backed out changeset e8f45cf7b043 (bug 1100284)
2014-11-21 16:54:31 -08:00
Mike de Boer
d169ec1158 Bug 1100284: also support detached chat windows in duplicate chat window handling. r=mixedpuppy 2014-11-21 15:47:56 +01:00
Wes Kocher
fc57d4ef07 Backed out changeset a7621853f055 (bug 1100284) for xpcshell bustage 2014-11-21 10:54:36 -08:00
Mike de Boer
a4b921c032 Bug 1100284: also support detached chat windows in duplicate chat window handling. r=mixedpuppy 2014-11-21 15:47:56 +01:00
Dão Gottwald
482ac774e9 Update browser_lastAccessedTab.js for bug 980231 2014-11-26 15:09:01 +01:00
ithinc
4b4726dfc2 Bug 980231 - MRU tab order is broken in some cases. r=dao 2014-11-26 14:21:05 +01:00