Open
Bug 1414498
Opened 8 years ago
Updated 1 year ago
Support tabs.favIconUrl on Android
Categories
(Firefox for Android :: WebExtensions, defect, P3)
Tracking
()
NEW
People
(Reporter: baptiste.themine, Unassigned)
References
Details
(Whiteboard: [addons-jira])
Attachments
(1 file)
|
187.94 KB,
application/zip
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0
Build ID: 20171024165158
Steps to reproduce:
I tryed to get favIconUrl from tabs on Firefox Android with the following code :
//Tab open
browser.tabs.onCreated.addListener(function(tab){
console.log(tab.favIconUrl);
});
//Tab update
browser.tabs.onUpdated.addListener(function(tabid,info,tab){
console.log(tab.favIconUrl);
});
Related Topic : https://discourse.mozilla.org/t/webextensions-get-tab-faviconurl-on-firefox-android/20958
Actual results:
The code above is working on Firefox Desktop but the favIconUrl is always undefined on Firefox Android.
The attached file contains Test.xpi and screenshots of both result in Firefox Desktop and Firefox Android.
Tested on Firefox 56 and Firefox Android Nightly 58.
Expected results:
The favIconUrl property should be defined in Firefox Android.
| Reporter | ||
Updated•8 years ago
|
OS: Unspecified → Android
Updated•8 years ago
|
Component: General → WebExtensions: Android
Product: Firefox for Android → Toolkit
Hardware: Unspecified → All
Comment 1•8 years ago
|
||
This is easier said than done. The tab favicon is available on the Java side, but there's no simple way to reflect it into JS.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Summary: WebExtensions : favIconUrl undefined on Firefox Android → Support tabs.favIconUrl on Android
| Reporter | ||
Comment 2•8 years ago
|
||
I don't understand. Is tabs.favIconUrl not already supposed to be supported on Android since version 54?
See compatibility table on https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/tabs/Tab
Updated•8 years ago
|
status-firefox57:
--- → wontfix
Priority: -- → P3
Comment 3•8 years ago
|
||
(In reply to Baptiste Thémine from comment #2)
> Is tabs.favIconUrl not already supposed to be supported on Android since
> version 54?
No, favIconUrl support was never implemented for Android.
| Reporter | ||
Comment 4•8 years ago
|
||
Ok, it was surely a mistake. I will create a pull request to https://github.com/mdn/browser-compat-data for this issue.
Updated•7 years ago
|
Product: Toolkit → WebExtensions
Updated•3 years ago
|
Severity: normal → S3
Updated•3 years ago
|
Updated•2 years ago
|
Whiteboard: [addons-jira]
Updated•2 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•