Tomer Cohen
3dcaa6b2cd
Bug 1332694 - Add chevron-rtl.png to android chrome manifest r=sebastian
...
MozReview-Commit-ID: 8jtEMtqZWOg
--HG--
extra : rebase_source : 1a2e5c86b9d6df77f9f92131cd8328a56db0003d
2017-01-20 20:24:03 +02:00
James Willcox
f55f874788
Bug 1297751 - Allow E10S to be enabled on Fennec via browser.tabs.remote.force-enable r=sebastian
2016-08-26 16:57:27 -05:00
Randall Barker
9a3fae864f
Bug 1291373 - [geckoview] part 3, Remove MOZ_ANDROID_APZ r=botond,snorp
2016-08-16 14:33:43 -07:00
Ray Lin
4b6c1eeaa1
Bug 1065076 - Update icons to SVG for video controls. r=margaret
...
--HG--
extra : rebase_source : 90db92e279fd5f3b65c429380e724281cb2e6baf
2016-03-18 17:48:38 +08:00
Grigory Kruglov
9cc8e72cbc
Bug 1254729 - Remove about:devices from Fennec. r=nalexander
...
MozReview-Commit-ID: 2RC82OrrsnA
--HG--
extra : transplant_source : %C3%06%0B%1D%5E%15%60%C3%3BZS%28EB%8B3s%F3%B7k
2016-03-09 15:37:04 -08:00
Margaret Leibovic
fd676ca818
Bug 1253339 - Remove about:feedback code. r=sebastian
...
MozReview-Commit-ID: 3ASVVlDiJph
--HG--
extra : rebase_source : bf3a9b10cd7c695ad2266132bc3ca900f8defdad
2016-03-03 12:57:54 -05:00
Ting-Yu Lin
775a6ca252
Bug 1097398 Part 3 - Use Android L style carets assets on Fennec. r=nalexander
...
The default AccessibleCaret CSS style is in layout/base/ua.css. We override them
in content.css to use the Android L style assets.
MozReview-Commit-ID: 6IEejkP7Moq
--HG--
extra : rebase_source : fce4d167628a02492f79993338d3596ac0d9dcdf
2016-02-16 16:55:28 +08:00
Joel Maher
de9f8d8859
Bug 1251373 - Remove moz payment API support. r=Margaret
...
MozReview-Commit-ID: IW63XQDyB16
--HG--
extra : rebase_source : 2038809a37a265843e6033392cbe08641dfb3a50
2016-02-25 13:08:50 -08:00
Margaret Leibovic
b529456553
Bug 1226238 - (Part 5) Update reader view toolbar styles. r=Gijs,ahunt
...
MozReview-Commit-ID: 6YjmXZgGwOu
--HG--
extra : rebase_source : 456ce825e85ccc49bafe8290742dfce8f29d0556
2016-02-22 14:28:02 -08:00
Margaret Leibovic
3a66695ff2
Bug 1226238 - (Part 4) Remove reading list toggle button from reader view. r=ahunt,Gijs
...
MozReview-Commit-ID: 3pwOV5BjwC9
--HG--
extra : rebase_source : 66c2afd658320c5e5bd05e4b2a3278f2c871fee2
2016-02-22 10:35:32 -05:00
Margaret Leibovic
8db3f1faa4
Bug 1226238 - (Part 1) Remove share button from reader view. r=ahunt,Gijs
...
MozReview-Commit-ID: 3TFzz809KcM
--HG--
extra : rebase_source : 3cf003c5cbbe02e03bcf6f5f96843ccbc4a26a09
2016-02-22 10:09:07 -05:00
Nick Alexander
3e1c5ea1e5
Bug 1220892 - Part 1: Remove MOZ_ANDROID_NATIVE_ACCOUNTS_UI. r=mcomella
...
--HG--
extra : commitid : 3drJfjq0uyX
extra : rebase_source : 67a2e524b90f78e8f719e1f8efc9a84a6f9a19dd
extra : histedit_source : 68805f753e785e2d935ee221ba5243597ec24f92
2015-11-30 14:32:17 -08:00
Kartikaya Gupta
fd2ef38e1d
Bug 1223928 - Enable gecko scrollbars on Fennec. r=snorp
...
--HG--
extra : commitid : 8uqrfGGmp1F
2015-11-19 09:55:21 -05:00
Kalpesh Krishna
78b1e76558
Bug 1208759 - Stop preprocessing mobile/android/themes. r=nalexander
...
--HG--
rename : mobile/android/themes/core/defines.inc => mobile/android/themes/core/defines.css
extra : commitid : 1t0Ve8iNSuv
extra : rebase_source : 5e533df11a274e393c74148f7d2fa95950f9db19
2015-11-16 10:51:55 -08:00
Jonathan Almeida [:jonalmeida]
d90d4c18d9
Bug 1170725 - Click-to-play images. r=mfinkle
...
--HG--
extra : transplant_source : %E7%19%F3%EF%A2%A4%09%D2%29G%C7Es%C4%16%CF%03%B0%84%A6
2015-08-15 23:36:37 -07:00
Nick Alexander
cdb092fe66
Bug 1191067 - Add Fennec version of about:accounts. r=antlam,margaret
...
This is a Fennec version of about:accounts, cribbed largely from
Desktop's implementation. This implementation serves two purposes:
One, it allows all fxa-content-server pref handling to remain in
Gecko. Java-side consumers redirect to about:accounts?action=... and
have pref munging and parameter addition (like context=fx_fennec_v1,
etc) handled by about:accounts itself.
Two, it handles network connectivity display and error handling. When
a request is started, we display an animated spinner. We transition
smoothly from the spinner to the iframe display if we can, and if not
we hide any network error and offer to retry. This is more important
in Fennec than it is on Desktop. This approach agrees with Firefox
for iOS.
Some additional notes:
The spinner to iframe transition uses the WebChannel listener to send
LOADED messages to the appropriate XUL <browser> element. It's worth
remembering that Fennec's Gecko is single process, so the <browser> in
question is in the same process. None-the-less, we are close to e10s
safe.
There are four actions: signup/signin/force_reauth, and manage. The
first three try to produce a LOGIN message. The last uses the
fxa-content-server to manage the Account settings. *This is not how
this is arranged on Desktop: Desktop redirects to a new tab, not
wrapped in about:accounts.*
--HG--
extra : commitid : F2waTwe355B
extra : rebase_source : f63c96f676d1300c774d091968ec8d88bb7a86dc
2015-09-18 16:28:14 -04:00
Nick Alexander
781fb20b44
Bug 1204510
- Replace animated SVG spinner with non-SVG equivalent. r=ally
...
The spinner itself is 60px square, colored like fennec_ui_orange.
The HTML and CSS was hacked out of
https://github.com/lightningtgc/material-refresh , tree
6b1be0046d
.
The original code is licensed MIT. I pruned things we don't use,
adjusted the box model for our use, changed the spinner color, and
simplified the CSS.
--HG--
extra : commitid : yncLSrgF9z
extra : rebase_source : 02dc83cbb189fb8fa7ff5b1f75d6407a4601d1d5
2015-09-18 16:07:38 -04:00
Mike Taylor
89cc9566a7
Bug 1175378. Remove unused image assets. r=margaret
2015-08-20 13:44:37 -07:00
Allison Naaktgeboren
f9028b72d5
Bug 1114821 - Remove nightly-only flag for about logins.r=liuche
2015-08-17 23:22:24 -07:00
Martyn Haigh
7c50e01340
Bug 1187984 - Update about:privatebrowsing to include information about TP; r=liuche
...
--HG--
extra : commitid : 4rzcE5psRjn
extra : rebase_source : e4798ca421c5ab039a95a898743e7e59805e17dc
2015-07-31 14:04:46 +01:00
Allison Naaktgeboren
80fc6f5887
Bug 1101746 - Display message when no passwords are present.r=liuche
2015-07-23 14:11:32 -07:00
Allison Naaktgeboren
d1eeace105
Bug 1155345 - UI affordance during loading of list items in about:passwords.r=liuche
2015-07-22 15:22:42 -07:00
Margaret Leibovic
313ec41bae
Bug 1179872 - Remove about:apps page and menu item. r=mcomella
...
--HG--
extra : commitid : I868jpOSYPO
extra : rebase_source : bc65dc5c0f6389b79fddc5c553f6f6ef9110751e
2015-07-07 16:01:43 -07:00
Margaret Leibovic
54a2cf7196
Bug 1170841 - Show warning in add-on manager for add-ons that aren't properly signed. r=liuche
...
--HG--
extra : rebase_source : d5a5380036f18c1897256e9719a4d6ded9c1e19b
2015-06-17 17:46:27 -07:00
Allison Naaktgeboren
bf0635a24a
Bug 1136477 - Unify terminology of Passwords/Logins for about:logins (nee about:passwords).1/2.r=margaret
...
--HG--
rename : mobile/android/chrome/content/aboutPasswords.js => mobile/android/chrome/content/aboutLogins.js
rename : mobile/android/chrome/content/aboutPasswords.xhtml => mobile/android/chrome/content/aboutLogins.xhtml
rename : mobile/android/locales/en-US/chrome/aboutPasswords.dtd => mobile/android/locales/en-US/chrome/aboutLogins.dtd
rename : mobile/android/locales/en-US/chrome/aboutPasswords.properties => mobile/android/locales/en-US/chrome/aboutLogins.properties
rename : mobile/android/tests/browser/robocop/testAboutPasswords.java => mobile/android/tests/browser/robocop/testAboutLogins.java
rename : mobile/android/tests/browser/robocop/testAboutPasswords.js => mobile/android/tests/browser/robocop/testAboutLogins.js
rename : mobile/android/themes/core/aboutPasswords.css => mobile/android/themes/core/aboutLogins.css
2015-06-10 18:52:27 -07:00
Margaret Leibovic
284cbc74c1
Bug 1154028 - Move reader controls styles to scoped style sheet. r=Gijs
...
--HG--
rename : toolkit/themes/shared/aboutReader.css => toolkit/themes/shared/aboutReaderControls.css
extra : rebase_source : ffe9bb98c33b2a508ce6112f2d73d353d112c6d7
2015-04-23 10:59:03 -07:00
Margaret Leibovic
0f3d32072f
Bug 1154028 - Move reader content styles to scoped style sheet. r=Gijs
...
--HG--
rename : toolkit/themes/shared/aboutReader.css => toolkit/themes/shared/aboutReaderContent.css
extra : rebase_source : f263543d158f4d958eac3a628cd26d73f75f547c
2015-04-23 10:42:31 -07:00
Margaret Leibovic
22c88554a0
Bug 1120004 - Update styles of Reader View controls on mobile. r=bnicholson
...
--HG--
extra : rebase_source : b50005d5f99151a0ea9d6c2b022791198db8b846
2015-02-27 16:52:03 -08:00
Margaret Leibovic
b1c8846285
Bug 1134441 - Replace font size controls with +/- buttons. r=bnicholson
...
--HG--
extra : rebase_source : 0251d53ec2ecef1506ce985414f814f9f582c974
2015-02-24 17:15:03 -08:00
Giovanny Andres Gongora Granada
c7c2a73eb0
Bug 1126426 - Rename reader-plus-icon-xhdpi.png on config.css. r=margaret
...
--HG--
rename : mobile/android/themes/core/images/reader-plus-icon-xhdpi.png => mobile/android/themes/core/images/config-plus.png
2015-01-28 09:19:11 +01:00
Giovanny Andres Gongora Granada
c4d3437008
Bug 1124479 - Remove unused plus-button styles from aboutReader.css. r=margaret
2015-01-28 09:19:09 +01:00
Nick Alexander
f0a5607b87
Bug 1093358 - Add mobile/android AppConstants.jsm. r=mfinkle,f=rnewman
...
I did as much conversion to "real Javascript" as I could stomach. It
is, unfortunately, not feasible to remove all preprocessing from CSS
and XHTML files.
--HG--
extra : rebase_source : 8fb3601d09010d9efa4fa33b507dc327fe4dca47
extra : amend_source : 5f796e7cc131880b12756e17240396b040ae981c
2015-01-20 15:17:58 -08:00
Fernando Jimenez
56324f5e54
Bug 1097928 - Convert MozPaymentProvider to WebIDL. Android. r=wjohnston
2015-01-19 14:50:54 +01:00
Margaret Leibovic
945009ac1b
Bug 1101741 - Add filtering on about:passwords. r=mfinkle
...
--HG--
extra : rebase_source : d1d71f255db3b15896f22b71f71ec2bd9455882a
2015-01-06 17:28:30 -08:00
Margaret Leibovic
de5e9c40f7
Bug 793920 - (Part 1) Move majority of Android reader mode code to a shared place in /toolkit. r=Mossop,bnicholson
...
--HG--
rename : mobile/android/chrome/content/JSDOMParser.js => toolkit/components/reader/content/JSDOMParser.js
rename : mobile/android/chrome/content/Readability.js => toolkit/components/reader/content/Readability.js
rename : mobile/android/chrome/content/aboutReader.html => toolkit/components/reader/content/aboutReader.html
rename : mobile/android/chrome/content/aboutReader.js => toolkit/components/reader/content/aboutReader.js
rename : mobile/android/chrome/content/readerWorker.js => toolkit/components/reader/content/readerWorker.js
rename : mobile/android/locales/en-US/chrome/aboutReader.properties => toolkit/locales/en-US/chrome/global/aboutReader.properties
extra : rebase_source : f0b900c46bb5dc894303ddf3701be7b019b61ae0
extra : histedit_source : 7417d0e4032ed3a3b1ab83af8f7e8a92951fdead
2014-12-10 16:44:53 -08:00
Chenxia Liu
dbce887c2a
Bug 1093201 - Part 1: Passwords management UI. r=margaret
2014-12-10 15:43:13 -08:00
vivek
06b60a952e
Bug 1007436 - "Revamp visual design of about:feedback". r=margaret.leibovic f=alam
2014-10-03 12:29:00 +02:00
Wes Johnston
d5d5063238
Bug 1018468 - Add fullscreen button to video controls. r=mfinkle
2014-06-11 10:25:18 -07:00
Nick Alexander
2712067761
Bug 1000676 - Part 2: Add MOZ_DEVICES and register about:devices. r=mfinkle
2014-05-05 11:27:56 -07:00
Margaret Leibovic
a2e99b9719
Bug 949178 - Remove reading list button from reader mode toolbar. r=lucasr
2014-04-22 14:27:03 -07:00
Margaret Leibovic
40a3984de6
Bug 988068 - Improve about:addons styling. r=mfinkle
2014-04-21 11:06:14 -07:00
Mark Finkle
78297a38af
Bug 946454 - [Roku] Show 'casting' button in the video controls r=wesj, dolske
2014-04-18 16:48:06 -04:00
Myk Melez
e3e1f9ec39
bug 934760 - implement synthetic APK update flow; r=wesj
2014-02-07 23:50:13 -08:00
Richard Newman
bdf87cafc6
Bug 965064 - Part 1: back out non-native about:accounts. r=nalexander
2014-01-28 16:49:54 -08:00
Nick Alexander
b5e6f7d0ff
Bug 951883 - Part 2: Remove temporary compile time guards. r=me
...
--HG--
extra : rebase_source : 51325eeea8fc1d5b2e7cd84e8977072b030496c8
2013-12-18 15:13:26 -08:00
Nick Alexander
6010d96638
Bug 899217 - Part 1: Register about:accounts code. r=rnewman
...
This is temporary code for our first engineering milestone. I know of
the following issues:
* the page doesn't implement the full interface and spec that the
loaded content expects; it just does enough to work.
* logs are repeated if about:accounts is re-loaded.
2013-12-17 15:14:56 -08:00
Mark Capella
4933bbe732
Bug 840144 - Make about:config prettier on Android. r=wesj
2013-11-05 22:10:30 -08:00
Wes Johnston
e0f8ef1796
Bug 808636 - Restyle mobile error pages. r=margaret
2013-08-15 12:04:42 -07:00
Margaret Leibovic
5ca18055eb
Bug 722902 - Make AMO more discoverable in the browser. r=mfinkle
...
--HG--
rename : mobile/android/themes/core/images/addons-amo-hdpi.png => mobile/android/themes/core/images/marketplace-logo.png
2013-08-01 09:31:49 -07:00
Mark Finkle
85c917abe4
Bug 886496 - When doing lazy tab restoration, set the <browser>s in question to display:none until restored r=bnicholson
2013-07-12 08:44:23 -04:00